diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-05-04 13:21:22 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-05-04 13:21:22 +0200 |
commit | ad6a40aaa580551b2861d51740a427af05d9f165 (patch) | |
tree | 602cdcbd35ac51808ac87190eea1b459646d6cf2 /src/exchangedb | |
parent | 458992dc6fa0152dc55d68f3f633c58a05877407 (diff) |
fix fmt string issues
Diffstat (limited to 'src/exchangedb')
-rw-r--r-- | src/exchangedb/exchangedb_keyio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exchangedb/exchangedb_keyio.c b/src/exchangedb/exchangedb_keyio.c index 9f170f645..5f29cb0d8 100644 --- a/src/exchangedb/exchangedb_keyio.c +++ b/src/exchangedb/exchangedb_keyio.c @@ -70,7 +70,7 @@ signkeys_iterate_dir_iter (void *cls, "Invalid signkey file `%s': wrong size (%d, expected %u)\n", filename, (int) nread, - sizeof (struct TALER_EXCHANGEDB_PrivateSigningKeyInformationP)); + (unsigned int) sizeof (struct TALER_EXCHANGEDB_PrivateSigningKeyInformationP)); return GNUNET_OK; } return skc->it (skc->it_cls, |