Fix compiler warnings
authorBehdad Esfahbod <behdad@behdad.org>
Wed, 2 Jan 2013 08:19:04 +0000 (02:19 -0600)
committerBehdad Esfahbod <behdad@behdad.org>
Wed, 2 Jan 2013 08:19:04 +0000 (02:19 -0600)
src/fcobjs.c

index 4a1b0a8..b3bb200 100644 (file)
@@ -53,7 +53,7 @@ retry:
        if (!ot)
            return NULL;
 
-       ot->object.object = FcStrdup (str);
+       ot->object.object = (const char *) FcStrdup (str);
        ot->object.type = -1;
        ot->id = fc_atomic_int_add (next_id, +1);
        ot->next = ots;
@@ -74,7 +74,7 @@ FcObject
 FcObjectLookupBuiltinIdByName (const char *str)
 {
     const struct FcObjectTypeInfo *o = FcObjectTypeLookup (str, strlen (str));
-    FcObject id;
+
     if (o)
        return o->id;