From: Martin Mares Date: Wed, 29 Aug 2007 21:10:13 +0000 (+0200) Subject: Fixed bug in error message. X-Git-Tag: holmes-import~506^2~13^2~74 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=2893c73b3209e4fb73d4fce9216fb344e8d9e1e7;p=libucw.git Fixed bug in error message. --- diff --git a/lib/sorter/sort-test.c b/lib/sorter/sort-test.c index be6fd511..3eb2147e 100644 --- a/lib/sorter/sort-test.c +++ b/lib/sorter/sort-test.c @@ -137,7 +137,7 @@ test_counted(int mode, u64 size) die("Discrepancy: %u instead of %u", j, i); uns k = bgetl(f); if (k != 2*mult) - die("Discrepancy: %u has count %u instead of %u", j, k, mult); + die("Discrepancy: %u has count %u instead of %u", j, k, 2*mult); } bclose(f); }