From dbc231a1c627ac8f83ce36c4139e3ac9b1477cf6 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 31 Dec 2006 18:10:47 +0000 Subject: r20443: Fix a compiler warning (This used to be commit 19781d71fc5a8146109395cd53c04cf13cc48652) --- source3/smbd/notify.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source3/smbd/notify.c b/source3/smbd/notify.c index 9957c1fc5d..49a516b907 100644 --- a/source3/smbd/notify.c +++ b/source3/smbd/notify.c @@ -443,7 +443,8 @@ static BOOL buf_to_notify_message(void *buf, size_t len, struct notify_message *msg) { if (len < MSG_NOTIFY_MESSAGE_SIZE) { - DEBUG(0, ("Got invalid notify message of len %d\n", len)); + DEBUG(0, ("Got invalid notify message of len %d\n", + (int)len)); return False; } -- cgit