summaryrefslogtreecommitdiff
path: root/src/tests/eio
diff options
context:
space:
mode:
authorCedric Bail <cedric@osg.samsung.com>2016-09-15 21:48:25 -0700
committerCedric Bail <cedric@osg.samsung.com>2016-09-15 21:49:08 -0700
commitd6935e983a20ec0c486fb464ee3540b1739f21ac (patch)
tree97986a6b928c81f78c81f1e7c5cd42ea576696a8 /src/tests/eio
parentb7415803295d1824f4af72f3523408a07000fc0a (diff)
downloadefl-d6935e983a20ec0c486fb464ee3540b1739f21ac.tar.gz
eio: use proper const for progress.
Diffstat (limited to 'src/tests/eio')
-rw-r--r--src/tests/eio/eio_test_manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/eio/eio_test_manager.c b/src/tests/eio/eio_test_manager.c
index c20530e109..ebfcc9edf7 100644
--- a/src/tests/eio/eio_test_manager.c
+++ b/src/tests/eio/eio_test_manager.c
@@ -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);