svn commit: samba r20443 - in branches/SAMBA_3_0/source/smbd: .

vlendec at samba.org vlendec at samba.org
Sun Dec 31 18:10:48 GMT 2006


Author: vlendec
Date: 2006-12-31 18:10:47 +0000 (Sun, 31 Dec 2006)
New Revision: 20443

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=20443

Log:
Fix a compiler warning
Modified:
   branches/SAMBA_3_0/source/smbd/notify.c


Changeset:
Modified: branches/SAMBA_3_0/source/smbd/notify.c
===================================================================
--- branches/SAMBA_3_0/source/smbd/notify.c	2006-12-31 17:52:24 UTC (rev 20442)
+++ branches/SAMBA_3_0/source/smbd/notify.c	2006-12-31 18:10:47 UTC (rev 20443)
@@ -443,7 +443,8 @@
 				  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;
 	}
 



More information about the samba-cvs mailing list