eio: use proper const for progress.
authorCedric Bail <cedric@osg.samsung.com>
Fri, 16 Sep 2016 04:48:25 +0000 (21:48 -0700)
committerCedric Bail <cedric@osg.samsung.com>
Fri, 16 Sep 2016 04:49:08 +0000 (21:49 -0700)
src/tests/eio/eio_test_manager.c

index c20530e..ebfcc9e 100644 (file)
@@ -22,7 +22,7 @@ static void
 _progress_cb(void *data, const Efl_Event *ev)
 {
    Efl_Future_Event_Progress *p = ev->info;
-   Eina_Array *batch = p->progress;
+   const Eina_Array *batch = p->progress;
    uint64_t *number_of_listed_files = data;
 
    (*number_of_listed_files) += eina_array_count(batch);