{src,util}: Use NULL instead of 0 for pointer

Change-Id: I75fa4577055f25dde0a8b1044c005bba72cabd92
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26857
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
Elyes HAOUAS
2018-06-05 08:41:29 +02:00
committed by Patrick Georgi
parent f061a73ab9
commit 1d3fde4693
9 changed files with 17 additions and 17 deletions

View File

@@ -167,7 +167,7 @@ void print_guid_type_attributes(void *Hobptr)
void print_hob_type_structure(u16 Hobtype, void *Hoblistptr)
{
u32 *Currenthob;
u32 *Nexthob = 0;
u32 *Nexthob = NULL;
u8 Lasthob = 0;
u32 Currenttype;
const char *Currenttypestr;