diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2017-01-31 10:15:11 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2017-01-31 10:15:11 +0100 |
commit | 550fe816e546e78931792e94b558336516054415 (patch) | |
tree | abbd9c26e080fceab1308ef562a18d9cc1476ba9 /call/menu.c | |
parent | 7173a92eeeb7b4b4bdb17f9064fede35bec87dd4 (diff) |
Fix further abuse of 0 as NULL pointer.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'call/menu.c')
-rw-r--r-- | call/menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/call/menu.c b/call/menu.c index ff42cba..6a0613f 100644 --- a/call/menu.c +++ b/call/menu.c @@ -90,7 +90,7 @@ void winclose(wint * wtab) } doupdate(); - lwin->next = 0; + lwin->next = NULL; free(awin); } |