From 6615056abb3c9d58d31de4dcaf4756a8fd5a8eb9 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Fri, 2 Sep 2005 20:23:44 +0000 Subject: [PATCH] string_append() has to be defined another way exceptionnaly --- include/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/string.h b/include/string.h index 006fdf0..83a1654 100644 --- a/include/string.h +++ b/include/string.h @@ -13,7 +13,7 @@ String * string_new(String * string); void string_delete(String * string); /* useful */ -int string_append(String * string, String * append); +int string_append(String ** string, String * append); void string_cut(String * string, unsigned int length); int string_length(String * string);