diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-06-07 07:49:43 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:23:11 -0500 |
commit | 075a5dfdc43303734122160e1a82c7685e616002 (patch) | |
tree | 3c4755757962595fa17557317b820a1f6f547dfa /source3/smbd | |
parent | 713ee9242a52dd5343decb19788cea4c7f607f15 (diff) | |
download | samba-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/smbd')
-rw-r--r-- | source3/smbd/open.c | 2 |
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; } |