This prevents the compiler from reporting a possible uninitialized use
of maybe_keycode in function curses_refresh.

Cc: Gerd Hoffmann <kra...@redhat.com>
Signed-off-by: Paolo Bonzini <pbonz...@redhat.com>
---
 ui/curses.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/ui/curses.c b/ui/curses.c
index a6e260e..a3ec9b5 100644
--- a/ui/curses.c
+++ b/ui/curses.c
@@ -225,6 +225,8 @@ static wint_t console_getch(enum maybe_keycode 
*maybe_keycode)
     case ERR:
         ret = -1;
         break;
+    default:
+       abort();
     }
     return ret;
 }
-- 
1.8.3.1


Reply via email to