summaryrefslogtreecommitdiff
path: root/wizard/main.c
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2012-03-14 11:33:33 -0400
committerCosimo Cecchi <cosimoc@gnome.org>2012-03-14 11:44:59 -0400
commite27c8bcd5ed15db989539622b2631eb5c39ab0c8 (patch)
tree4ab504d7ca3a98b9d034965dbfc0d69d53809e91 /wizard/main.c
parent0d85a2b57eb72f22afab3cb878c9beb5834b9f18 (diff)
downloadgnome-bluetooth-e27c8bcd5ed15db989539622b2631eb5c39ab0c8.tar.gz
wizard: fix semicolon oops
This would force the ICADE interface for everything coming from the database which was not a keyboard. https://bugzilla.gnome.org/show_bug.cgi?id=672077
Diffstat (limited to 'wizard/main.c')
-rw-r--r--wizard/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wizard/main.c b/wizard/main.c
index c99caac0..93423cdd 100644
--- a/wizard/main.c
+++ b/wizard/main.c
@@ -753,7 +753,7 @@ select_device_changed (BluetoothChooser *selector,
g_str_equal (user_pincode, "NULL") == FALSE) {
if (g_str_equal (user_pincode, "KEYBOARD"))
target_ui_behaviour = PAIRING_UI_KEYBOARD;
- else if (g_str_equal (user_pincode, "ICADE"));
+ else if (g_str_equal (user_pincode, "ICADE"))
target_ui_behaviour = PAIRING_UI_ICADE;
g_free (user_pincode);
user_pincode = NULL;