aboutsummaryrefslogtreecommitdiff
path: root/util/kconfig/nconf.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-06-05 08:41:29 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-06-11 08:52:08 +0000
commit1d3fde4693aee3299b9023ec325cbfee90ed0969 (patch)
treec24725edd21dee6e97739f37e5548aa19d60d0ba /util/kconfig/nconf.c
parentf061a73ab9654ccae73b2fcbd58d8f08017bae59 (diff)
{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>
Diffstat (limited to 'util/kconfig/nconf.c')
-rw-r--r--util/kconfig/nconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/kconfig/nconf.c b/util/kconfig/nconf.c
index f9944a64de..905dcd11bd 100644
--- a/util/kconfig/nconf.c
+++ b/util/kconfig/nconf.c
@@ -1078,7 +1078,7 @@ static int do_match(int key, struct match_state *state, int *ans)
static void conf(struct menu *menu)
{
- struct menu *submenu = 0;
+ struct menu *submenu = NULL;
const char *prompt = menu_get_prompt(menu);
struct symbol *sym;
int res;
@@ -1245,7 +1245,7 @@ static void show_help(struct menu *menu)
static void conf_choice(struct menu *menu)
{
const char *prompt = _(menu_get_prompt(menu));
- struct menu *child = 0;
+ struct menu *child = NULL;
struct symbol *active;
int selected_index = 0;
int last_top_row = 0;