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 <cedric@osg.samsung.com>
This commit is contained in:
Jean Guyomarc'h 2015-04-28 23:50:57 +02:00 committed by Cedric BAIL
parent e65de76e52
commit 537f11278f
1 changed files with 1 additions and 1 deletions

View File

@ -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);