summaryrefslogtreecommitdiff
path: root/src/string_list.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string_list.c')
-rw-r--r--src/string_list.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/string_list.c b/src/string_list.c
index fa35789..bb59ff6 100644
--- a/src/string_list.c
+++ b/src/string_list.c
@@ -33,6 +33,7 @@
*/
#include <string.h>
+#include <stdlib.h>
#include <stdio.h>
#include "string_list.h"
@@ -63,7 +64,7 @@ void string_list_clear(string_list_t* list)
int string_list_add(string_list_t* list, const char* string)
{
if(!list)
- return;
+ return -1;
if(!list->first) {
list->first = malloc(sizeof(string_list_element_t));