bu5hm4n pushed a commit to branch master.

http://git.enlightenment.org/tools/clouseau.git/commit/?id=e53de2b36c911885fab3e59adcae849a7d6dfcb6

commit e53de2b36c911885fab3e59adcae849a7d6dfcb6
Author: Marcel Hollerbach <marcel-hollerb...@t-online.de>
Date:   Mon Nov 14 13:43:53 2016 +0100

    clouseau_data: use EET_COMPRESSION instead of EINA_TRUE
    
    even if its not a functional change, passing there a boolean value is
    wrong, it requires a compression from the enumaration
---
 src/lib/clouseau_data.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lib/clouseau_data.c b/src/lib/clouseau_data.c
index 3c639c7..74a7b83 100644
--- a/src/lib/clouseau_data.c
+++ b/src/lib/clouseau_data.c
@@ -675,9 +675,9 @@ clouseau_data_eet_info_save(const char *filename,
    if (!fp) return EINA_FALSE;
 
    eet_data_write(fp, clouseau_app_add_edd, CLOUSEAU_APP_ADD_ENTRY,
-                  a, EINA_TRUE);
+                  a, EET_COMPRESSION_DEFAULT);
    eet_data_write(fp, clouseau_tree_data_edd, CLOUSEAU_TREE_DATA_ENTRY,
-                  ftd, EINA_TRUE);
+                  ftd, EET_COMPRESSION_DEFAULT);
 
    /* Build list of (bmp_info_st *) according to user selection    */
    EINA_LIST_FOREACH(ck_list, l , ck)
@@ -699,7 +699,7 @@ clouseau_data_eet_info_save(const char *filename,
 
         t.view = shots;
         eet_data_write(fp, clouseau_shot_list_edd, CLOUSEAU_BMP_LIST_ENTRY,
-                       &t, EINA_TRUE);
+                       &t, EET_COMPRESSION_DEFAULT);
         EINA_LIST_FREE(shots, st)
           {
              sprintf(buf, CLOUSEAU_BMP_DATA_ENTRY"/%llx", st->object);

-- 


Reply via email to