Fixed compilation
This commit is contained in:
4
src/builtins/env/env.c
vendored
4
src/builtins/env/env.c
vendored
@@ -33,10 +33,10 @@ static void print_entry(
|
||||
t_map_entry *entry
|
||||
)
|
||||
{
|
||||
ft_putstr(entry->key);
|
||||
ft_putstr((char *)entry->key);
|
||||
ft_putchar('=');
|
||||
if (entry->value != NULL)
|
||||
ft_putstr(entry->value);
|
||||
ft_putstr((char *)entry->value);
|
||||
ft_putchar('\n');
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user