r20443: Fix a compiler warning
authorVolker Lendecke <vlendec@samba.org>
Sun, 31 Dec 2006 18:10:47 +0000 (18:10 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:16:50 +0000 (12:16 -0500)
source/smbd/notify.c

index 9957c1fc5d4c104261c4313bb023f662eb38078f..49a516b907d018d8cf3630e62829817656d746a8 100644 (file)
@@ -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;
        }