diff options
| author | Thomas Schmucker <ts@its1.de> | 2020-07-24 12:23:33 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2020-07-24 12:23:33 +0200 |
| commit | 0ba2797fdf4577588bcf7f5cac9d94ae43b8b31b (patch) | |
| tree | db3313317439e4eff369ea4687f4cd1181eb569e /csv-perf.c | |
| parent | 4a77a81d349d81bf9ed479bb3b8ddedb1c22aa82 (diff) | |
| download | libcsv-0ba2797fdf4577588bcf7f5cac9d94ae43b8b31b.tar.gz libcsv-0ba2797fdf4577588bcf7f5cac9d94ae43b8b31b.tar.bz2 libcsv-0ba2797fdf4577588bcf7f5cac9d94ae43b8b31b.zip | |
Benutze size_t statt int bei Größenangaben
Diffstat (limited to 'csv-perf.c')
| -rw-r--r-- | csv-perf.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -13,7 +13,7 @@ test(FILE *f) | |||
| 13 | int line = 0; | 13 | int line = 0; |
| 14 | csv_t csv = { 0 }; | 14 | csv_t csv = { 0 }; |
| 15 | 15 | ||
| 16 | while ( csv_read(&csv, f) != EOF ) { | 16 | while ( csv_read(&csv, f) ) { |
| 17 | ++line; | 17 | ++line; |
| 18 | } | 18 | } |
| 19 | 19 | ||
