# HG changeset patch # User ib # Date 1330002947 0 # Node ID f49f6501eb8b6747396a7560cda3d8697ba057eb # Parent 6378e3a2ffb8290f93d350da2daafb11d82a1193 Add a default clause to listMgr()'s switch statement. diff -r 6378e3a2ffb8 -r f49f6501eb8b gui/util/list.c --- a/gui/util/list.c Thu Feb 23 13:07:49 2012 +0000 +++ b/gui/util/list.c Thu Feb 23 13:15:47 2012 +0000 @@ -183,9 +183,11 @@ } return NULL; - } + + default: - return NULL; + return NULL; + } } /**