* fix compilation with c++ compilers
authorcaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 13 Sep 2008 07:45:47 +0000 (07:45 +0000)
committercaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 13 Sep 2008 07:45:47 +0000 (07:45 +0000)
 * remove trailing spaces

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@35973 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/data/evas_inline_array.x

index 0ea0a0d..6939d0c 100644 (file)
@@ -12,14 +12,14 @@ _evas_array_grow(Evas_Array *array)
 {
    void **tmp;
    size_t total;
-   
+
    total = array->total + array->step;
-   tmp = realloc(array->data, sizeof (void*) * total);
+   tmp = (void **)realloc(array->data, sizeof (void*) * total);
    if (!tmp) return 0;
-   
+
    array->total = total;
    array->data = tmp;
-   
+
    return 1;
 }
 
@@ -28,7 +28,7 @@ _evas_array_append(Evas_Array *array, void *data)
 {
    if (UNLIKELY((array->count + array->step) > array->total))
      if (!_evas_array_grow(array)) return ;
-   
+
    array->data[array->count++] = data;
 }