cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=68a31df22723339dbeca04e57028227748bba7f4
commit 68a31df22723339dbeca04e57028227748bba7f4 Author: Guilherme Lepsch <lep...@expertisesolutions.com.br> Date: Sun Apr 5 15:19:47 2015 +0200 eio: fix mismatch datatypes for internal data model properties. --- src/lib/eio/eio_model.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/lib/eio/eio_model.c b/src/lib/eio/eio_model.c index 454f1b1..7b6bf1d 100644 --- a/src/lib/eio/eio_model.c +++ b/src/lib/eio/eio_model.c @@ -2,6 +2,8 @@ # include <config.h> #endif +#include <stdint.h> + #include <Emodel.h> #include <Eina.h> #include <eio_model.h> @@ -693,10 +695,10 @@ _struct_properties_init(void) { const char *filename; const char *path; - double mtime; + struct timeval mtime; int is_dir; int is_lnk; - int size; + int64_t size; } This_Eio_Properties; static Eina_Value_Struct_Member prop_members[] = { --