Fix for other in ft_vprintf

This commit is contained in:
gbaconni
2022-04-15 00:26:47 +02:00
parent cab84b5f28
commit af87168372
3 changed files with 7 additions and 5 deletions

View File

@@ -6,7 +6,7 @@
# By: gbaconni@student.42lausanne.ch +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2022/01/18 15:11:16 by gbaconni #+# #+# #
# Updated: 2022/04/15 00:01:26 by gbaconni ### lausanne.ch #
# Updated: 2022/04/15 00:23:05 by gbaconni ### lausanne.ch #
# #
# **************************************************************************** #
#
@@ -84,6 +84,8 @@ test: clean $(NAME)
@$(PREFIX) ./$(NAME) "%d" 42 || true
@$(PREFIX) ./$(NAME) "%x" 42 || true
@$(PREFIX) ./$(NAME) "%X" 42 || true
@$(PREFIX) ./$(NAME) "42" "" || true
@$(PREFIX) ./$(NAME) "%%" "" || true
test2: debug
@$(MAKE) test DEBUG=1