diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-12-31 18:10:47 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:16:50 -0500 |
commit | dbc231a1c627ac8f83ce36c4139e3ac9b1477cf6 (patch) | |
tree | d76e4712b762ecc4f4e22faddb7e7a27941ed5bb /source3/smbd | |
parent | 200bd10b32107b4ce8fc72cc2abbf5a247708ba6 (diff) | |
download | samba-dbc231a1c627ac8f83ce36c4139e3ac9b1477cf6.tar.gz samba-dbc231a1c627ac8f83ce36c4139e3ac9b1477cf6.tar.bz2 samba-dbc231a1c627ac8f83ce36c4139e3ac9b1477cf6.zip |
r20443: Fix a compiler warning
(This used to be commit 19781d71fc5a8146109395cd53c04cf13cc48652)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/notify.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; } |