diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-07-31 21:16:51 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-07-31 21:16:51 +0000 |
commit | 660f11be541813be5f09fbaf44d8e7c6d5a5bbfe (patch) | |
tree | 1d133bdfc69d11fe81e769825adf3f680ee2f91e /curses_keys.h | |
parent | 2e29bd04786003561303dcad940b38afe790fb9b (diff) | |
download | hqemu-660f11be541813be5f09fbaf44d8e7c6d5a5bbfe.zip hqemu-660f11be541813be5f09fbaf44d8e7c6d5a5bbfe.tar.gz |
Fix Sparse warnings: "Using plain integer as NULL pointer"
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'curses_keys.h')
-rw-r--r-- | curses_keys.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/curses_keys.h b/curses_keys.h index 4c6f3db..a6e41cf 100644 --- a/curses_keys.h +++ b/curses_keys.h @@ -479,5 +479,5 @@ static const name2keysym_t name2keysym[] = { { "F20", 0x11c }, { "Escape", 27 }, - { 0, 0 }, + { NULL, 0 }, }; |