Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir     : e17/libs/evas/src/lib/include


Modified Files:
        evas_inline.x 


Log Message:


fix arrya state engin issue... redraws vanishing. fixed!

===================================================================
RCS file: /cvs/e/e17/libs/evas/src/lib/include/evas_inline.x,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- evas_inline.x       26 May 2008 13:17:12 -0000      1.2
+++ evas_inline.x       12 Jun 2008 13:22:26 -0000      1.3
@@ -161,7 +161,7 @@
 static inline void
 _evas_array_append(Evas_Array *array, void *data)
 {
-   if (UNLIKELY(array->count + array->step > array->total))
+   if (UNLIKELY((array->count + array->step) > array->total))
      if (!_evas_array_grow(array)) return ;
 
    array->data[array->count++] = data;



-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to