From: Volker Lendecke Date: Thu, 7 Jun 2007 07:49:43 +0000 (+0000) Subject: r23375: Fix a 64-bit warning X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~252 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c592b562fa793c9fb3bd0d84074d4ffaa8f63b64;p=thirdparty%2Fsamba.git r23375: Fix a 64-bit warning --- diff --git a/source/smbd/open.c b/source/smbd/open.c index 30576f1e082..41fbce9889e 100644 --- a/source/smbd/open.c +++ b/source/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; }