diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-01-28 16:01:25 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-01-28 16:01:25 +0100 |
commit | 1b3cf4e3ce43e556ef47c669511620815b747221 (patch) | |
tree | be53e93d6fd39578ce71e82502c1289aac98e819 /src/ft_print_list.c | |
parent | Everything is terrible but this might work (diff) | |
download | 42-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 'src/ft_print_list.c')
-rw-r--r-- | src/ft_print_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ft_print_list.c b/src/ft_print_list.c index 4f67a88..495f9e4 100644 --- a/src/ft_print_list.c +++ b/src/ft_print_list.c @@ -22,5 +22,5 @@ ft_print_list(t_cub *clist) ft_printf("%2zu [%s]\n", i + 1, clist->map[i]); i++; } - ft_printf("Map width [%d]\n", clist->map_w); + ft_printf("Map width [%zu]\n", clist->map_w); } |