diff options
author | Tom Hacohen <tom@stosb.com> | 2013-04-09 15:19:40 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2013-04-09 15:19:40 +0100 |
commit | bf8a49d9a2ec7d41602661f7810063393d9d8874 (patch) | |
tree | 2565eec34e609de1d505c3e3d07d7a4dab0f2b7c | |
parent | fe8db5a2d1a449fc028ed94eadf3e29479249b7f (diff) | |
download | efl-bf8a49d9a2ec7d41602661f7810063393d9d8874.tar.gz |
Eet: Pass the correct parameter to the correct format.
-rw-r--r-- | src/lib/eet/eet_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/eet/eet_lib.c b/src/lib/eet/eet_lib.c index ee566bf577..12785c3b5b 100644 --- a/src/lib/eet/eet_lib.c +++ b/src/lib/eet/eet_lib.c @@ -943,8 +943,8 @@ eet_internal_read2(Eet_File *ef) if (eet_test_close(!ef->ed, ef)) return NULL; - INF("loading dictionnary for '%s' with %lu entries of size %i", - ef->path, num_dictionary_entries, sizeof(Eet_String)); + INF("loading dictionnary for '%s' with %lu entries of size %lu", + ef->path, num_dictionary_entries, (unsigned long int) sizeof(Eet_String)); ef->ed->all = calloc(1, num_dictionary_entries * sizeof(Eet_String)); if (eet_test_close(!ef->ed->all, ef)) |