Fixed compilation

This commit is contained in:
marcnava-42cursus
2026-02-09 22:48:12 +01:00
parent 084fa4759c
commit d39eca2c94
5 changed files with 26 additions and 26 deletions

View File

@@ -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');
}