diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-04-14 10:33:45 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-04-14 10:33:46 -0700 |
commit | 1d058dc6e5bdc6832906aa3237157787cbccda8a (patch) | |
tree | d21c004fa954067d3ef7a5f1d80d49b90480db42 /parse-options.h | |
parent | 638cbf5f0f0dba7df1ad487e45638342c9afb6a0 (diff) | |
parent | d3c0811467153d3bf1732fef94530e5b0e7cdddf (diff) | |
download | git-1d058dc6e5bdc6832906aa3237157787cbccda8a.tar.gz |
Merge branch 'iu/fix-parse-options-h-comment'
* iu/fix-parse-options-h-comment:
parse-options.h: OPTION_{BIT,SET_INT} do not store pointer to defval
Diffstat (limited to 'parse-options.h')
-rw-r--r-- | parse-options.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/parse-options.h b/parse-options.h index 7940bc71af..c71e9da4f8 100644 --- a/parse-options.h +++ b/parse-options.h @@ -95,8 +95,7 @@ typedef int parse_opt_ll_cb(struct parse_opt_ctx_t *ctx, * * `defval`:: * default value to fill (*->value) with for PARSE_OPT_OPTARG. - * OPTION_{BIT,SET_INT} store the {mask,integer,pointer} to put in - * the value when met. + * OPTION_{BIT,SET_INT} store the {mask,integer} to put in the value when met. * CALLBACKS can use it like they want. */ struct option { |