aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_map_error.c
diff options
context:
space:
mode:
authorRudy Bousset <rbousset@z2r4p3.le-101.fr>2020-02-17 16:25:11 +0100
committerRudy Bousset <rbousset@z2r4p3.le-101.fr>2020-02-17 16:25:11 +0100
commit4f207400fd8e6724d321b6f2fa79fba5f16f9d59 (patch)
tree3896037d8a5938044bd6b6d49a18ad6305b948f0 /src/ft_map_error.c
parentAdded libbsd to linux Makefile (diff)
parentready to merge (diff)
download42-cub3d-4f207400fd8e6724d321b6f2fa79fba5f16f9d59.tar.gz
42-cub3d-4f207400fd8e6724d321b6f2fa79fba5f16f9d59.tar.bz2
42-cub3d-4f207400fd8e6724d321b6f2fa79fba5f16f9d59.tar.xz
42-cub3d-4f207400fd8e6724d321b6f2fa79fba5f16f9d59.tar.zst
42-cub3d-4f207400fd8e6724d321b6f2fa79fba5f16f9d59.zip
Merge branch 'better_parse'
Diffstat (limited to '')
-rw-r--r--src/ft_map_error.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ft_map_error.c b/src/ft_map_error.c
index 263eee8..5d5ab68 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 %zu: %s\033[0m\n",
+ clist->mlist->line_chk,
+ errmsg);
return (ft_exit(4, clist));
}