diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-09-25 16:33:13 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-09-25 16:33:13 +0200 |
commit | 5cc0aeb15280903018e5e4dd00ab47c26d5f4e7c (patch) | |
tree | c4f2ccda8745d0f43712d234974fd067b3028c02 /src | |
parent | 21e0d302fc849d9f8827b9f2cb93472f7c30fafe (diff) | |
download | sciteco-5cc0aeb15280903018e5e4dd00ab47c26d5f4e7c.tar.gz |
avoid compiler warning in interface-curses.cpp
Diffstat (limited to 'src')
-rw-r--r-- | src/interface-curses.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/interface-curses.cpp b/src/interface-curses.cpp index 7466de3..93fe923 100644 --- a/src/interface-curses.cpp +++ b/src/interface-curses.cpp @@ -1133,6 +1133,9 @@ InterfaceCurses::draw_info(void) waddstr(info_window, info_type_str); format_filename(info_window, info_current); break; + + default: + g_assert_not_reached(); } wclrtoeol(info_window); |