From 0ba2797fdf4577588bcf7f5cac9d94ae43b8b31b Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Fri, 24 Jul 2020 12:23:33 +0200 Subject: Benutze size_t statt int bei Größenangaben MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- csv-perf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'csv-perf.c') diff --git a/csv-perf.c b/csv-perf.c index 51bf9ff..37616e4 100644 --- a/csv-perf.c +++ b/csv-perf.c @@ -13,7 +13,7 @@ test(FILE *f) int line = 0; csv_t csv = { 0 }; - while ( csv_read(&csv, f) != EOF ) { + while ( csv_read(&csv, f) ) { ++line; } -- cgit v1.3