This commit is contained in:
Etienne Rey-bethbeder
2023-04-14 16:17:35 +02:00
parent 882a39fc94
commit 0b56e95868
12 changed files with 36 additions and 36 deletions

4
env/env_fill.c vendored
View File

@ -31,7 +31,7 @@ static char *ft_getkey(const char *str)
key = ft_strndup(str + 1, i - 1);
}
if (key == NULL)
ft_eprintf("minishell: malloc failed\n");
ft_eprintf("bozoshell: malloc failed\n");
return (key);
}
@ -54,7 +54,7 @@ static char *ft_getvalue(t_data *data, char *key)
value = ft_strdup(value);
}
if (value == NULL)
ft_eprintf("minishell: malloc failed\n");
ft_eprintf("bozoshell: malloc failed\n");
return (value);
}