# HG changeset patch # User Mikael Berthe # Date 1367137742 -7200 # Node ID 1b5a19b2ba44f589a7758aa2b103786d630d2712 # Parent 163fb7b56e26b914c31f34059011dbde78666536 Get rid of a GCC build warning Add a dummy enum value MKEY_NONE kill GCC complaint that the case value is not in enumerated type. diff -r 163fb7b56e26 -r 1b5a19b2ba44 mcabber/mcabber/screen.h --- a/mcabber/mcabber/screen.h Sun Jan 06 09:48:27 2013 +0530 +++ b/mcabber/mcabber/screen.h Sun Apr 28 10:29:02 2013 +0200 @@ -64,7 +64,8 @@ int value; int utf8; enum { - MKEY_META = 1, + MKEY_NONE = 0, + MKEY_META, MKEY_EQUIV, MKEY_CTRL_PGUP, MKEY_CTRL_PGDOWN,