hmm llvm complaining -b ut again - i think its bogus. i just added an init of
authorraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 2 Mar 2010 02:25:33 +0000 (02:25 +0000)
committerraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 2 Mar 2010 02:25:33 +0000 (02:25 +0000)
count to 0 just in case thats what was tripping it up (as it didnt accoutn
for the for loop)

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/evas@46766 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/canvas/evas_object_smart.c

index 0cd0406..93455fc 100644 (file)
@@ -497,7 +497,7 @@ evas_object_smart_callbacks_descriptions_set(Evas_Object *obj, const Evas_Smart_
 {
    const Evas_Smart_Cb_Description *d;
    Evas_Object_Smart *o;
-   unsigned int i, count;
+   unsigned int i, count = 0;
 
    MAGIC_CHECK(obj, Evas_Object, MAGIC_OBJ);
    return 0;