From 1b3cf4e3ce43e556ef47c669511620815b747221 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 28 Jan 2020 16:01:25 +0100 Subject: I understood --- src/ft_map_error.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/ft_map_error.c') diff --git a/src/ft_map_error.c b/src/ft_map_error.c index df7a2fc..0970936 100644 --- a/src/ft_map_error.c +++ b/src/ft_map_error.c @@ -3,9 +3,10 @@ #include int -ft_map_error(unsigned int linum, t_cub *clist) +ft_map_error(t_cub *clist) { ft_dprintf(STDERR_FILENO, "Error\n"); - ft_dprintf(STDERR_FILENO, "\033[1;31mMap error: line %d\033[0m\n", linum); + ft_dprintf(STDERR_FILENO, + "\033[1;31mMap error: line %zu\033[0m\n", clist->line_chk); return (ft_exit(1, clist)); } -- cgit v1.2.3