* [PATCH] pull.c: fix some sparse warnings
@ 2015-06-16 23:18 Ramsay Jones
2015-06-17 10:32 ` Paul Tan
0 siblings, 1 reply; 2+ messages in thread
From: Ramsay Jones @ 2015-06-16 23:18 UTC (permalink / raw)
To: pyokagan; +Cc: Junio C Hamano, GIT Mailing-list
Commit 191241e5 ("pull: pass git-fetch's options to git-fetch",
14-06-2015) uses the OPT_PASSTHRU macro to add some command line
'struct option' initialisations to the pull_options array. This
causes sparse to complain, thus:
SP builtin/pull.c
builtin/pull.c:160:9: warning: Using plain integer as NULL pointer
builtin/pull.c:163:9: warning: Using plain integer as NULL pointer
builtin/pull.c:170:9: warning: Using plain integer as NULL pointer
builtin/pull.c:173:9: warning: Using plain integer as NULL pointer
builtin/pull.c:182:9: warning: Using plain integer as NULL pointer
builtin/pull.c:188:9: warning: Using plain integer as NULL pointer
builtin/pull.c:191:9: warning: Using plain integer as NULL pointer
This is caused by using '0' in the macro which is used to initialise
a pointer field of the 'struct option'. In order to suppress the
warnings, we simply pass 'NULL', rather than '0', to the OPT_PASSTHRU
macro.
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
---
Hi Paul,
If you need to re-roll your patches on the 'pt/pull-builtin' branch,
could you please squash this into the patch which corresponds to
commit 191241e5.
Thanks!
ATB,
Ramsay Jones
builtin/pull.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/builtin/pull.c b/builtin/pull.c
index d690aee..8bbe838 100644
--- a/builtin/pull.c
+++ b/builtin/pull.c
@@ -157,20 +157,20 @@ static struct option pull_options[] = {
/* Options passed to git-fetch */
OPT_GROUP(N_("Options related to fetching")),
- OPT_PASSTHRU(0, "all", &opt_all, 0,
+ OPT_PASSTHRU(0, "all", &opt_all, NULL,
N_("fetch from all remotes"),
PARSE_OPT_NOARG),
- OPT_PASSTHRU('a', "append", &opt_append, 0,
+ OPT_PASSTHRU('a', "append", &opt_append, NULL,
N_("append to .git/FETCH_HEAD instead of overwriting"),
PARSE_OPT_NOARG),
OPT_PASSTHRU(0, "upload-pack", &opt_upload_pack, N_("path"),
N_("path to upload pack on remote end"),
0),
OPT__FORCE(&opt_force, N_("force overwrite of local branch")),
- OPT_PASSTHRU('t', "tags", &opt_tags, 0,
+ OPT_PASSTHRU('t', "tags", &opt_tags, NULL,
N_("fetch all tags and associated objects"),
PARSE_OPT_NOARG),
- OPT_PASSTHRU('p', "prune", &opt_prune, 0,
+ OPT_PASSTHRU('p', "prune", &opt_prune, NULL,
N_("prune remote-tracking branches no longer on remote"),
PARSE_OPT_NOARG),
OPT_PASSTHRU(0, "recurse-submodules", &opt_recurse_submodules,
@@ -179,16 +179,16 @@ static struct option pull_options[] = {
PARSE_OPT_OPTARG),
OPT_BOOL(0, "dry-run", &opt_dry_run,
N_("dry run")),
- OPT_PASSTHRU('k', "keep", &opt_keep, 0,
+ OPT_PASSTHRU('k', "keep", &opt_keep, NULL,
N_("keep downloaded pack"),
PARSE_OPT_NOARG),
OPT_PASSTHRU(0, "depth", &opt_depth, N_("depth"),
N_("deepen history of shallow clone"),
0),
- OPT_PASSTHRU(0, "unshallow", &opt_unshallow, 0,
+ OPT_PASSTHRU(0, "unshallow", &opt_unshallow, NULL,
N_("convert to a complete repository"),
PARSE_OPT_NONEG | PARSE_OPT_NOARG),
- OPT_PASSTHRU(0, "update-shallow", &opt_update_shallow, 0,
+ OPT_PASSTHRU(0, "update-shallow", &opt_update_shallow, NULL,
N_("accept refs that update .git/shallow"),
PARSE_OPT_NOARG),
OPT_PASSTHRU(0, "refmap", &opt_refmap, N_("refmap"),
--
2.4.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] pull.c: fix some sparse warnings
2015-06-16 23:18 [PATCH] pull.c: fix some sparse warnings Ramsay Jones
@ 2015-06-17 10:32 ` Paul Tan
0 siblings, 0 replies; 2+ messages in thread
From: Paul Tan @ 2015-06-17 10:32 UTC (permalink / raw)
To: Ramsay Jones; +Cc: Junio C Hamano, GIT Mailing-list
On Wed, Jun 17, 2015 at 7:18 AM, Ramsay Jones
<ramsay@ramsay1.demon.co.uk> wrote:
> Hi Paul,
>
> If you need to re-roll your patches on the 'pt/pull-builtin' branch,
> could you please squash this into the patch which corresponds to
> commit 191241e5.
Thanks. I must have been half-asleep because the block of code just
above uses NULL instead of 0. ><
Regards,
Paul
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-06-17 10:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-16 23:18 [PATCH] pull.c: fix some sparse warnings Ramsay Jones
2015-06-17 10:32 ` Paul Tan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).