From 47b6b355b34db221bc905889f58a92124bf3e9ec Mon Sep 17 00:00:00 2001 From: alle Date: Fri, 20 Mar 2009 19:37:11 +0000 Subject: [PATCH] Fix yellow git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20408 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/text_editor.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/plugins/text_editor.c b/apps/plugins/text_editor.c index 216fbc011..8552590ef 100644 --- a/apps/plugins/text_editor.c +++ b/apps/plugins/text_editor.c @@ -424,6 +424,9 @@ enum plugin_status plugin_start(const void* parameter) rb->set_color(rb->screens[SCREEN_MAIN], name, &color, -1); temp_changed = (value == NULL) || (color != old_color); break; + default: + /* Should never happend but makes compiler happy */ + temp_changed = false; } if (temp_changed) -- 2.11.4.GIT