[gnome-bluetooth] wizard: fix semicolon oops



commit e27c8bcd5ed15db989539622b2631eb5c39ab0c8
Author: Cosimo Cecchi <cosimoc gnome org>
Date:   Wed Mar 14 11:33:33 2012 -0400

    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

 wizard/main.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/wizard/main.c b/wizard/main.c
index c99caac..93423cd 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;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]