cedric pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=537f11278f4cc8a462c70b8c971a4cf04993c137

commit 537f11278f4cc8a462c70b8c971a4cf04993c137
Author: Jean Guyomarc'h <jean.guyoma...@gmail.com>
Date:   Tue Apr 28 23:50:57 2015 +0200

    eina: fix eina_stringshare format warning after commit 912924a
    
    Summary:
    Since the type of 'r' changed from unsigned short to unsigned int we
    need to change its format as well.
    
    Reviewers: stefan_schmidt, raster, cedric
    
    Reviewed By: cedric
    
    Subscribers: cedric
    
    Differential Revision: https://phab.enlightenment.org/D2446
    
    Signed-off-by: Cedric BAIL <ced...@osg.samsung.com>
---
 src/lib/eina/eina_stringshare.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/eina/eina_stringshare.c b/src/lib/eina/eina_stringshare.c
index c935b5f..588865d 100644
--- a/src/lib/eina/eina_stringshare.c
+++ b/src/lib/eina/eina_stringshare.c
@@ -426,7 +426,7 @@ 
_eina_stringshare_small_bucket_dump(Eina_Stringshare_Small_Bucket *bucket,
      {
         int dups;
 
-        printf("DDD: %5hhu %5hu '%s'\n", *l, *r, *s);
+        printf("DDD: %5hhu %5u '%s'\n", *l, *r, *s);
 
         dups = (*r - 1);
 

-- 


Reply via email to