From 775ab17e8ae71b4ef4cdc79cc564074e3303b8c3 Mon Sep 17 00:00:00 2001 From: Timo Schmidt Date: Wed, 3 May 2023 22:51:01 +0200 Subject: [PATCH] Automatic add --- libft_test/ft_isalpha_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libft_test/ft_isalpha_test.c b/libft_test/ft_isalpha_test.c index 4bcad63..d794843 100755 --- a/libft_test/ft_isalpha_test.c +++ b/libft_test/ft_isalpha_test.c @@ -80,7 +80,7 @@ int main(){ arg = 'a' - 1; test (printf, "%d\n", ft_isalpha(arg)); expect(printf, "%d\n", isalpha(arg)); - arg = 'A' - 1 + arg = 'A' - 1; test (printf, "%d\n", ft_isalpha(arg)); expect(printf, "%d\n", isalpha(arg)); arg = 'z' + 1;