aboutsummaryrefslogtreecommitdiff
path: root/src/types/str.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/types/str.c')
-rw-r--r--src/types/str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types/str.c b/src/types/str.c
index e1818a2..bbd5ad9 100644
--- a/src/types/str.c
+++ b/src/types/str.c
@@ -35,7 +35,7 @@ str* str_init(const char* init){
void str_free(str* s){
free(s->c);
- return free(s);
+ free(s);
}
void str_push(str* s, const char* insert){