diff --git a/0x0B-malloc_free/1-strdup.c b/0x0B-malloc_free/1-strdup.c index c78df28..816e2f8 100644 --- a/0x0B-malloc_free/1-strdup.c +++ b/0x0B-malloc_free/1-strdup.c @@ -24,7 +24,7 @@ char *_strdup(char *str) cpy_str = malloc((strlen + 1) * sizeof(char)); if (cpy_str == NULL) - return (NULL); + return (NULL); for (i = 0; i < strlen; i++) {