Skip to content

Commit

Permalink
style: formatted whitespaces at line 27
Browse files Browse the repository at this point in the history
  • Loading branch information
Adebayo-S committed Apr 5, 2022
1 parent d2a2b7e commit c95a34c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 0x0B-malloc_free/1-strdup.c
Original file line number Diff line number Diff line change
Expand Up @@ -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++)
{
Expand Down

0 comments on commit c95a34c

Please sign in to comment.