1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s4:libpolicy - fix printf output specifiers to suppress warning

This commit is contained in:
Matthias Dieter Wallnöfer 2010-06-20 20:34:48 +02:00
parent 26bcbf6e35
commit 58715dd365

View File

@ -254,7 +254,7 @@ static NTSTATUS gp_get_file (struct smbcli_tree *tree, const char *remote_src,
/* Bytes read should match the file size, or the copy was incomplete */
if (nread != file_size) {
DEBUG(0, ("Remote/local file size mismatch after copying file: "
"%s (remote %ld, local %ld).\n",
"%s (remote %zu, local %zu).\n",
remote_src, file_size, nread));
talloc_free(buf);
return NT_STATUS_UNSUCCESSFUL;