diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-01-24 18:35:49 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-01-24 18:35:49 +0100 |
commit | a8444907257b7a46b7b2cb9ee49c20fe82b8789e (patch) | |
tree | ff904d583d20e78330b751e3624deb9f0cc4d329 /src/ft_map_error.c | |
parent | Got east texture (diff) | |
download | 42-cub3d-a8444907257b7a46b7b2cb9ee49c20fe82b8789e.tar.gz 42-cub3d-a8444907257b7a46b7b2cb9ee49c20fe82b8789e.tar.bz2 42-cub3d-a8444907257b7a46b7b2cb9ee49c20fe82b8789e.tar.xz 42-cub3d-a8444907257b7a46b7b2cb9ee49c20fe82b8789e.tar.zst 42-cub3d-a8444907257b7a46b7b2cb9ee49c20fe82b8789e.zip |
Correct
Diffstat (limited to '')
-rw-r--r-- | src/ft_map_error.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ft_map_error.c b/src/ft_map_error.c index 6af5438..2e8a9ff 100644 --- a/src/ft_map_error.c +++ b/src/ft_map_error.c @@ -3,9 +3,9 @@ #include <unistd.h> int -ft_map_error(unsigned int line, t_win *wlist) +ft_map_error(unsigned int linum, t_win *wlist) { ft_dprintf(STDERR_FILENO, "Error\n"); - ft_dprintf(STDERR_FILENO, "\033[1;31mMap error: line %d\033[0m\n", line); + ft_dprintf(STDERR_FILENO, "\033[1;31mMap error: line %d\033[0m\n", linum); return (ft_exit(1, wlist)); } |