git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 3/5] khash.h: Spell the null pointer as NULL
@ 2013-11-07 22:09 Ramsay Jones
  0 siblings, 0 replies; only message in thread
From: Ramsay Jones @ 2013-11-07 22:09 UTC (permalink / raw)
  To: Jeff King
  Cc: Vicent Marti, Junio C Hamano, Torsten Bögershausen,
	GIT Mailing-list


Noticed by sparse. ("Using plain integer as NULL pointer")

Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
---
 khash.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/khash.h b/khash.h
index 0fdf39d..c4c1613 100644
--- a/khash.h
+++ b/khash.h
@@ -114,7 +114,7 @@ static const double __ac_HASH_UPPER = 0.77;
 	}																	\
 	SCOPE int kh_resize_##name(kh_##name##_t *h, khint_t new_n_buckets) \
 	{ /* This function uses 0.25*n_buckets bytes of working space instead of [sizeof(key_t+val_t)+.25]*n_buckets. */ \
-		khint32_t *new_flags = 0;										\
+		khint32_t *new_flags = NULL;										\
 		khint_t j = 1;													\
 		{																\
 			kroundup32(new_n_buckets); 									\
-- 
1.8.4

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2013-11-07 22:15 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-07 22:09 [PATCH 3/5] khash.h: Spell the null pointer as NULL Ramsay Jones

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).