diff options
Diffstat (limited to 'camel/tests/folder/test8.c')
-rw-r--r-- | camel/tests/folder/test8.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/camel/tests/folder/test8.c b/camel/tests/folder/test8.c index cf8a7ecc8a..c039af5eb0 100644 --- a/camel/tests/folder/test8.c +++ b/camel/tests/folder/test8.c @@ -1,5 +1,7 @@ /* threaded folder testing */ +#include <string.h> + #include "camel-test.h" #include "folders.h" #include "messages.h" @@ -54,7 +56,7 @@ test_add_message(CamelFolder *folder, int j) pull(); push("appending simple message %d", j); - camel_folder_append_message(folder, msg, NULL, &ex); + camel_folder_append_message(folder, msg, NULL, NULL, &ex); check_msg(!camel_exception_is_set(&ex), "%s", camel_exception_get_description(&ex)); pull(); |