summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-06-07 07:49:43 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:23:11 -0500
commit075a5dfdc43303734122160e1a82c7685e616002 (patch)
tree3c4755757962595fa17557317b820a1f6f547dfa /source3
parent713ee9242a52dd5343decb19788cea4c7f607f15 (diff)
downloadsamba-075a5dfdc43303734122160e1a82c7685e616002.tar.gz
samba-075a5dfdc43303734122160e1a82c7685e616002.tar.bz2
samba-075a5dfdc43303734122160e1a82c7685e616002.zip
r23375: Fix a 64-bit warning
(This used to be commit c592b562fa793c9fb3bd0d84074d4ffaa8f63b64)
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/open.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c
index 30576f1e08..41fbce9889 100644
--- a/source3/smbd/open.c
+++ b/source3/smbd/open.c
@@ -2288,7 +2288,7 @@ void msg_file_was_renamed(struct messaging_context *msg,
if (data->data == NULL
|| data->length < MSG_FILE_RENAMED_MIN_SIZE + 2) {
DEBUG(0, ("msg_file_was_renamed: Got invalid msg len %d\n",
- data->length));
+ (int)data->length));
return;
}