1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

lib/ntdb: Fix format string errors found by -Werror=format in ntdb tests

This commit is contained in:
Andrew Bartlett 2012-07-30 13:40:19 +10:00
parent 5b4792d9d2
commit 17bddd15de

View File

@ -27,7 +27,7 @@ static enum NTDB_ERROR check(NTDB_DATA key,
int val;
if (key.dsize != sizeof(val)) {
diag("Wrong key size: %u\n", key.dsize);
diag("Wrong key size: %zu\n", key.dsize);
return NTDB_ERR_CORRUPT;
}