svn commit: samba r3965 - in branches/SAMBA_4_0/source/lib: .

metze at samba.org metze at samba.org
Thu Nov 25 19:12:17 GMT 2004


Author: metze
Date: 2004-11-25 19:12:16 +0000 (Thu, 25 Nov 2004)
New Revision: 3965

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

Log:
fix compiler warnings

metze

Modified:
   branches/SAMBA_4_0/source/lib/util.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/util.c
===================================================================
--- branches/SAMBA_4_0/source/lib/util.c	2004-11-25 19:02:42 UTC (rev 3964)
+++ branches/SAMBA_4_0/source/lib/util.c	2004-11-25 19:12:16 UTC (rev 3965)
@@ -787,7 +787,7 @@
 
 /* see if a range of memory is all zero. A NULL pointer is considered
    to be all zero */
-BOOL all_zero(const char *ptr, uint_t size)
+BOOL all_zero(const uint8_t *ptr, uint_t size)
 {
 	int i;
 	if (!ptr) return True;
@@ -796,5 +796,3 @@
 	}
 	return True;
 }
-
-



More information about the samba-cvs mailing list