diff options
author | Patrick Steinhardt <ps@pks.im> | 2025-04-17 12:49:41 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2025-04-17 08:15:16 -0700 |
commit | bc288c59298f199348418ca08322046c67c9a0a2 (patch) | |
tree | 7be79f5db2eef26a27d65a1dfbd1de6e2a9e236d /parse-options.h | |
parent | 09705696f763bac370ac74926bef137eb712c0c8 (diff) |
parse-options: introduce precision handling for `OPTION_UNSIGNED`
This commit is the equivalent to the preceding commit, but instead of
introducing precision handling for `OPTION_INTEGER` we introduce it for
`OPTION_UNSIGNED`.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'parse-options.h')
-rw-r--r-- | parse-options.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/parse-options.h b/parse-options.h index 4c430c7273..dc460a26ff 100644 --- a/parse-options.h +++ b/parse-options.h @@ -281,6 +281,7 @@ struct option { .short_name = (s), \ .long_name = (l), \ .value = (v), \ + .precision = sizeof(*v), \ .argh = N_("n"), \ .help = (h), \ .flags = PARSE_OPT_NONEG, \ |