]> Dogcows Code - chaz/openbox/blobdiff - obt/keyboard.c
Remove unused variable
[chaz/openbox] / obt / keyboard.c
index 8bfdd39b7f79046daa5d8a326803cbe9bfa25293..ef2678b529f15a8ab9811e798a8ceb06621d0d7f 100644 (file)
@@ -389,12 +389,11 @@ gunichar obt_keyboard_keypress_to_unichar(ObtIC *ic, XEvent *ev)
 KeySym obt_keyboard_keypress_to_keysym(XEvent *ev)
 {
     KeySym sym;
-    gint r;
 
     g_return_val_if_fail(ev->type == KeyPress, None);
 
     sym = None;
-    r = XLookupString(&ev->xkey, NULL, 0, &sym, NULL);
+    XLookupString(&ev->xkey, NULL, 0, &sym, NULL);
     return sym;
 }
 
This page took 0.024237 seconds and 4 git commands to generate.