[glib] array: Fix compilation



commit 017349823c0304b1e10c24c832adfecc3d227107
Author: Emmanuele Bassi <ebassi gnome org>
Date:   Sun Feb 2 09:28:31 2014 +0000

    array: Fix compilation

 glib/garray.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/glib/garray.c b/glib/garray.c
index 8c47357..43f5a4d 100644
--- a/glib/garray.c
+++ b/glib/garray.c
@@ -1319,7 +1319,7 @@ g_ptr_array_remove (GPtrArray *array,
     {
       if (array->pdata[i] == data)
         {
-          g_ptr_array_remove_index (farray, i);
+          g_ptr_array_remove_index (array, i);
           return TRUE;
         }
     }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]