svn commit: samba r13159 - in trunk/source/lib: .

vlendec at samba.org vlendec at samba.org
Thu Jan 26 11:21:39 GMT 2006


Author: vlendec
Date: 2006-01-26 11:21:38 +0000 (Thu, 26 Jan 2006)
New Revision: 13159

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

Log:
Fix two warnings
Modified:
   trunk/source/lib/util_str.c


Changeset:
Modified: trunk/source/lib/util_str.c
===================================================================
--- trunk/source/lib/util_str.c	2006-01-26 10:18:26 UTC (rev 13158)
+++ trunk/source/lib/util_str.c	2006-01-26 11:21:38 UTC (rev 13159)
@@ -1837,12 +1837,12 @@
 
 void str_list_free_talloc(TALLOC_CTX *mem_ctx, char ***list)
 {
-	return str_list_free_internal(mem_ctx, list);
+	str_list_free_internal(mem_ctx, list);
 }
 
 void str_list_free(char ***list)
 {
-	return str_list_free_internal(NULL, list);
+	str_list_free_internal(NULL, list);
 }
 
 /******************************************************************************



More information about the samba-cvs mailing list