summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2011-10-14 13:53:53 -0700
committerJeremy Allison <jra@samba.org>2011-10-14 13:53:53 -0700
commit7f655945e4c223c45d6b87c7d5d65e54e7fe84de (patch)
treefb3e7aab90b477316c071616b4bc9d460014f32d /source4
parentf4a41ce5a6f050fd4b46da8d85b4125791d26560 (diff)
downloadsamba-7f655945e4c223c45d6b87c7d5d65e54e7fe84de.tar.gz
samba-7f655945e4c223c45d6b87c7d5d65e54e7fe84de.tar.bz2
samba-7f655945e4c223c45d6b87c7d5d65e54e7fe84de.zip
Fix printf warning.
Diffstat (limited to 'source4')
-rw-r--r--source4/torture/smb2/connect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/smb2/connect.c b/source4/torture/smb2/connect.c
index b383a67a44..0067de0fad 100644
--- a/source4/torture/smb2/connect.c
+++ b/source4/torture/smb2/connect.c
@@ -75,7 +75,7 @@ static NTSTATUS torture_smb2_write(struct torture_context *tctx, struct smb2_tre
data = data_blob_talloc(tree, NULL, size);
if (size != data.length) {
- printf("data_blob_talloc(%s) failed\n", size);
+ printf("data_blob_talloc(%u) failed\n", (unsigned int)size);
return NT_STATUS_NO_MEMORY;
}