prefs: drop errnoneous semi-colon

This fixes a compiler warning and spurious
enqueuing of WORKSPACE_NAMES change.

https://bugzilla.gnome.org/show_bug.cgi?id=690573
This commit is contained in:
Ray Strode 2012-12-20 14:22:47 -05:00
parent 982d554450
commit 748064678f

View File

@ -1007,7 +1007,7 @@ settings_changed (GSettings *settings,
/* String array, handled separately */ /* String array, handled separately */
if (strcmp (key, KEY_WORKSPACE_NAMES) == 0) if (strcmp (key, KEY_WORKSPACE_NAMES) == 0)
{ {
if (update_workspace_names ()); if (update_workspace_names ())
queue_changed (META_PREF_WORKSPACE_NAMES); queue_changed (META_PREF_WORKSPACE_NAMES);
return; return;
} }