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

metze at samba.org metze at samba.org
Fri Nov 2 12:50:25 GMT 2007


Author: metze
Date: 2007-11-02 12:50:24 +0000 (Fri, 02 Nov 2007)
New Revision: 25802

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

Log:
fix the build on solaris, void functions doesn't return values

metze

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


Changeset:
Modified: branches/SAMBA_4_0/source/lib/util/util.c
===================================================================
--- branches/SAMBA_4_0/source/lib/util/util.c	2007-11-02 11:51:26 UTC (rev 25801)
+++ branches/SAMBA_4_0/source/lib/util/util.c	2007-11-02 12:50:24 UTC (rev 25802)
@@ -464,7 +464,7 @@
  */
 _PUBLIC_ void dump_data(int level, const uint8_t *buf, int len)
 {
-	return _dump_data(level, buf, len, false);
+	_dump_data(level, buf, len, false);
 }
 
 /**
@@ -475,7 +475,7 @@
  */
 _PUBLIC_ void dump_data_skip_zeros(int level, const uint8_t *buf, int len)
 {
-	return _dump_data(level, buf, len, true);
+	_dump_data(level, buf, len, true);
 }
 
 



More information about the samba-cvs mailing list