From 6259a669b55df9a091cb490c34f9d800e2b92443 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Mon, 9 Jan 2012 08:29:25 +0000 Subject: [PATCH] err to stderr --- tests/test_io_dir_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_io_dir_list.c b/tests/test_io_dir_list.c index 7be8d7b..6413eb9 100644 --- a/tests/test_io_dir_list.c +++ b/tests/test_io_dir_list.c @@ -63,7 +63,7 @@ static int test_2files_dir() } else if (!strcmp(*cur, "data/2files_dir/two")) { two++; } else { - fprintf("ERROR: wrong item: %s\n", *cur); + fprintf(stderr, "ERROR: wrong item: %s\n", *cur); ret = 1; } -- 2.7.4