Skip to content

Commit

Permalink
use correct format specifier for size_t
Browse files Browse the repository at this point in the history
  • Loading branch information
noonien-d committed Apr 19, 2019
1 parent 678fbd5 commit 251f893
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/conn-avatars.c
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@ pep_avatar_request_data_cb (
g_array_unref (arr);
g_free (bindata);

DEBUG ("retreived avatar from %d with size=%ld, sha1='%s'", handle, outlen, sha1);
DEBUG ("retrieved avatar from %d with size=%zd, sha1='%s'", handle, outlen, sha1);

// is this really needed?
if (sha1)
Expand Down

0 comments on commit 251f893

Please sign in to comment.