aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_map_error.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-01-28 16:01:25 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-01-28 16:01:25 +0100
commit1b3cf4e3ce43e556ef47c669511620815b747221 (patch)
treebe53e93d6fd39578ce71e82502c1289aac98e819 /src/ft_map_error.c
parentEverything is terrible but this might work (diff)
download42-cub3d-1b3cf4e3ce43e556ef47c669511620815b747221.tar.gz
42-cub3d-1b3cf4e3ce43e556ef47c669511620815b747221.tar.bz2
42-cub3d-1b3cf4e3ce43e556ef47c669511620815b747221.tar.xz
42-cub3d-1b3cf4e3ce43e556ef47c669511620815b747221.tar.zst
42-cub3d-1b3cf4e3ce43e556ef47c669511620815b747221.zip
I understood
Diffstat (limited to '')
-rw-r--r--src/ft_map_error.c5
1 files changed, 3 insertions, 2 deletions
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 <unistd.h>
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));
}