diff options
author | Ramsay Jones <ramsay@ramsay1.demon.co.uk> | 2013-07-18 22:25:50 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-07-19 01:43:47 +0200 |
commit | d099b7173dabdeeb1f339151ac2169b3a91bf631 (patch) | |
tree | 566f335eb1fef1a43bfd652b363239ff82d8444c /sha1_file.c | |
parent | sha1_object_info_extended: pass object_info to helpers (diff) | |
download | git-d099b7173dabdeeb1f339151ac2169b3a91bf631.tar.xz git-d099b7173dabdeeb1f339151ac2169b3a91bf631.zip |
Fix some sparse warnings
Sparse issues some "Using plain integer as NULL pointer" warnings.
Each warning relates to the use of an '{0}' initialiser expression
in the declaration of an 'struct object_info'. The first field of
this structure has pointer type. Thus, in order to suppress these
warnings, we replace the initialiser expression with '{NULL}'.
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Acked-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sha1_file.c')
-rw-r--r-- | sha1_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sha1_file.c b/sha1_file.c index 2500b94478..452e4647b3 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -2477,7 +2477,7 @@ int sha1_object_info_extended(const unsigned char *sha1, struct object_info *oi) int sha1_object_info(const unsigned char *sha1, unsigned long *sizep) { enum object_type type; - struct object_info oi = {0}; + struct object_info oi = {NULL}; oi.typep = &type; oi.sizep = sizep; |