From 66bfb5efc23b4dd9819bf70b5a709c81ccf7a820 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 14 Jan 2020 15:19:35 +0100 Subject: Linux portability and fix prettier bug --- ft_read_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ft_read_test.c') diff --git a/ft_read_test.c b/ft_read_test.c index 08c3c70..50a85bd 100644 --- a/ft_read_test.c +++ b/ft_read_test.c @@ -14,7 +14,7 @@ static int ret; ret = ft_read(ft_read_pipe[0], buf, FT_READ_BUF_SIZE); \ buf[ret] = '\0'; \ if (strcmp(buf, str) != 0) \ - printf("KO: [COMPARE]: %s: expected: \"%s\" got: \"%s\"\n", test_name, str, buf); \ + printf("KO: [COMPARE]: %s: expected: \"%s\" got: \"%s\"\n", test_name, str, buf); \ else \ print_ok(); \ close(ft_read_pipe[1]); \ -- cgit