From d673582241d9970e96b56caa0fd79ff95871c39b Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Thu, 5 Jan 2006 01:29:50 -0500 Subject: [PATCH] Fix gcc -Wall warning in profile_helper.c Signed-off-by: "Theodore Ts'o" --- e2fsck/profile_helpers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2fsck/profile_helpers.c b/e2fsck/profile_helpers.c index deb0e23..dcbdd32 100644 --- a/e2fsck/profile_helpers.c +++ b/e2fsck/profile_helpers.c @@ -85,7 +85,7 @@ static void end_list(struct profile_string_list *list, char ***ret_list) /* * Add a string to the list. */ -static errcode_t add_to_list(struct profile_string_list *list, const char *str) +static errcode_t add_to_list(struct profile_string_list *list, char *str) { char **newlist; int newmax; -- 1.8.3.1