diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-03-29 19:01:54 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-03-31 11:55:41 -0700 |
commit | 9ff8ff310b71ab79ffb0ecaa004dec65cec31a45 (patch) | |
tree | 1f90c499ad876179db274fb4982fb51855de160f /test-parse-options.c | |
parent | e25c070cb5c85ac3abe787373563a31c8893a669 (diff) | |
download | git-9ff8ff310b71ab79ffb0ecaa004dec65cec31a45.tar.gz |
parse-options: add cast to correct pointer type to OPT_SET_PTR
Do not force users of OPT_SET_PTR to cast pointer to correct
underlying pointer type by integrating cast into OPT_SET_PTR macro.
Cast is required to prevent 'initialization makes integer from pointer
without a cast' compiler warning.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'test-parse-options.c')
-rw-r--r-- | test-parse-options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-parse-options.c b/test-parse-options.c index 6f6c65692d..10da63e870 100644 --- a/test-parse-options.c +++ b/test-parse-options.c @@ -60,7 +60,7 @@ int main(int argc, char **argv) OPT_STRING('o', NULL, &string, "str", "get another string"), OPT_NOOP_NOARG(0, "obsolete"), OPT_SET_PTR(0, "default-string", &string, - "set string to default", (intptr_t)"default"), + "set string to default", "default"), OPT_STRING_LIST(0, "list", &list, "str", "add str to list"), OPT_GROUP("Magic arguments"), OPT_ARGUMENT("quux", "means --quux"), |