[SCM] Samba Shared Repository - branch master updated - tevent-0-9-8-157-g41596d2

Matthias Dieter Wallnöfer mdw at samba.org
Thu Sep 10 14:09:27 MDT 2009


The branch, master has been updated
       via  41596d2c434b9d3f0c7719d716f865f7b40fff9d (commit)
      from  7669bc3c89898c585a65547b246981ddcd0f49dc (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 41596d2c434b9d3f0c7719d716f865f7b40fff9d
Author: Matthias Dieter Wallnöfer <mwallnoefer at yahoo.de>
Date:   Thu Sep 10 22:05:49 2009 +0200

    util_strlist: Add some more "const"s - small correction

-----------------------------------------------------------------------

Summary of changes:
 lib/util/util_strlist.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/util/util_strlist.c b/lib/util/util_strlist.c
index c2c9e4f..b4b991f 100644
--- a/lib/util/util_strlist.c
+++ b/lib/util/util_strlist.c
@@ -35,7 +35,7 @@ _PUBLIC_ const char **str_list_make_empty(TALLOC_CTX *mem_ctx)
 {
 	const char **ret = NULL;
 
-	ret = (const char **) talloc_array(mem_ctx, char *, 1);
+	ret = talloc_array(mem_ctx, const char *, 1);
 	if (ret == NULL) {
 		return NULL;
 	}


-- 
Samba Shared Repository


More information about the samba-cvs mailing list