From 075a5dfdc43303734122160e1a82c7685e616002 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 7 Jun 2007 07:49:43 +0000 Subject: r23375: Fix a 64-bit warning (This used to be commit c592b562fa793c9fb3bd0d84074d4ffaa8f63b64) --- source3/smbd/open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/smbd') 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; } -- cgit