[RFC][PATCH 02/10] Sparse: fix some "using integer as NULL pointer" warnings
From: Ramsay Jones <hidden>
Date: 2016-06-15 22:43:15
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Ramsay Jones <hidden>
Date: 2016-06-15 22:43:15
Subsystem:
the rest · Maintainer:
Linus Torvalds
Signed-off-by: Ramsay Jones <redacted> --- daemon.c | 12 ++++++------ fetch-pack.c | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/daemon.c b/daemon.c
index e74ecac..b79e905 100644
--- a/daemon.c
+++ b/daemon.c@@ -60,12 +60,12 @@ static unsigned int init_timeout; #define INTERP_SLOT_PERCENT (5) static struct interp interp_table[] = { - { "%H", 0}, - { "%CH", 0}, - { "%IP", 0}, - { "%P", 0}, - { "%D", 0}, - { "%%", 0}, + { "%H" }, + { "%CH" }, + { "%IP" }, + { "%P" }, + { "%D" }, + { "%%" }, };
diff --git a/fetch-pack.c b/fetch-pack.c
index 06f4aec..75649a6 100644
--- a/fetch-pack.c
+++ b/fetch-pack.c@@ -642,7 +642,7 @@ static int remove_duplicates(int nr_heads, char **heads) heads[dst] = heads[src]; dst++; } - heads[dst] = 0; + heads[dst] = NULL; return dst; }
--
1.5.2