Fix remaining warnings
authorRan Benita <ran234@gmail.com>
Fri, 24 Feb 2012 14:10:06 +0000 (16:10 +0200)
committerRan Benita <ran234@gmail.com>
Sat, 25 Feb 2012 10:00:10 +0000 (12:00 +0200)
Signed-off-by: Ran Benita <ran234@gmail.com>
src/xkbcomp/geometry.c
src/xkbcomp/symbols.c
src/xkbcomp/utils.h

index 18f41e6..bb3a891 100644 (file)
@@ -3592,11 +3592,11 @@ CopySectionDef(struct xkb_geometry * geom, SectionInfo * si, GeometryInfo * info
                 key->shape_ndx = 0;
             else
             {
-                ShapeInfo *si;
-                si = FindShape(info, ki->shape, "key", keyText(ki));
-                if (!si)
+                ShapeInfo *shapei;
+                shapei = FindShape(info, ki->shape, "key", keyText(ki));
+                if (!shapei)
                     return False;
-                key->shape_ndx = si->index;
+                key->shape_ndx = shapei->index;
             }
             if (ki->color != None)
                 color =
index 1b98602..2a89598 100644 (file)
@@ -1678,7 +1678,7 @@ FindKeyForSymbol(struct xkb_desc * xkb, uint32_t sym, xkb_keycode_t *kc_rtrn)
             if (j < (int) XkbKeyNumSyms(xkb, i))
             {
                 gotOne = True;
-                if ((XkbKeySym(xkb, i, j) == sym))
+                if (XkbKeySym(xkb, i, j) == sym)
                 {
                     *kc_rtrn = i;
                     return True;
index 24bcd6f..c82ee9f 100644 (file)
@@ -114,7 +114,7 @@ uError(const char *s, ...);
 
 #define FATAL                  uFatalError
 
-extern __ATTR_PRINTF(1, 2) void
+extern __ATTR_PRINTF(1, 2) _X_NORETURN void
 uFatalError(const char *s, ...);
 
 /* WSGO stands for "Weird Stuff Going On" (wtf???) */