diff options
Diffstat (limited to '')
-rw-r--r-- | src/ft_map_error.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ft_map_error.c b/src/ft_map_error.c index 263eee8..cb099dc 100644 --- a/src/ft_map_error.c +++ b/src/ft_map_error.c @@ -15,10 +15,12 @@ #include <unistd.h> int - ft_map_error(t_cub *clist) + ft_map_error(const char *errmsg, t_cub *clist) { ft_dprintf(STDERR_FILENO, "Error\n"); ft_dprintf(STDERR_FILENO, - "\033[1;31mMap error: line %zu\033[0m\n", clist->mlist->line_chk); + "\033[1;31mMap error: line %3zu: %s\033[0m\n", + clist->mlist->line_chk, + errmsg); return (ft_exit(4, clist)); } |