comparison src/audlegacy/ui_preferences.c @ 4857:a8f1e4b43ec4

prefswin_page_destroy(): add missing 'continue' instruction. Found with LLVM static analyzer.
author William Pitcock <nenolod@atheme.org>
date Thu, 16 Apr 2009 20:07:38 -0500
parents 34d54dc5576d
children
comparison
equal deleted inserted replaced
4856:49574e8c4d0b 4857:a8f1e4b43ec4
3264 3264
3265 if (index == id) 3265 if (index == id)
3266 { 3266 {
3267 gtk_list_store_remove(GTK_LIST_STORE(model), &iter); 3267 gtk_list_store_remove(GTK_LIST_STORE(model), &iter);
3268 ret = gtk_tree_model_get_iter_first(model, &iter); 3268 ret = gtk_tree_model_get_iter_first(model, &iter);
3269 continue;
3269 } 3270 }
3270 3271
3271 if (index > id) 3272 if (index > id)
3272 { 3273 {
3273 index--; 3274 index--;