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_write_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ft_write_test.c') diff --git a/ft_write_test.c b/ft_write_test.c index c98c153..1c14244 100644 --- a/ft_write_test.c +++ b/ft_write_test.c @@ -14,7 +14,7 @@ static int ret; ret = read(ft_write_pipe[0], buf, FT_WRITE_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_write_pipe[1]); \ -- cgit