1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-28 07:21:54 +03:00

fixed a warning

This commit is contained in:
Andrew Tridgell 2008-06-02 11:02:37 +10:00
parent ed8f16379d
commit 7a8ee50105

View File

@ -257,7 +257,7 @@ void torture_result(struct torture_context *test,
do { const void *__got = (got), *__expected = (expected); \
if (memcmp(__got, __expected, len) != 0) { \
torture_result(torture_ctx, TORTURE_FAIL, \
__location__": "#got" of len %d did not match"#expected": %s", len, cmt); \
__location__": "#got" of len %d did not match"#expected": %s", (int)len, cmt); \
return false; \
} \
} while(0)