diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-04-24 10:11:03 +0300 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-04-25 20:04:30 +0300 |
commit | 4d857cc358ca0f19a859dfcd97e2cf834f8cfce1 (patch) | |
tree | 337426e7b189d96227d367472d4e3ccfcfa2d400 /tests/fs-tests/integrity | |
parent | 54cb6ff01a7936d7a160a65f5b28f735c05ff3d4 (diff) |
fs-tests: integck: fix line number in CHECK() output
In 'check_failed()' use the file and line number provided by the CHECK()
macro via the function parameters, rather than using __LINE__ directly.
Otherwise the funtion prints its own line, instead of the line where the
CHECK() failed.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'tests/fs-tests/integrity')
-rw-r--r-- | tests/fs-tests/integrity/integck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fs-tests/integrity/integck.c b/tests/fs-tests/integrity/integck.c index 80d34c0..9f03709 100644 --- a/tests/fs-tests/integrity/integck.c +++ b/tests/fs-tests/integrity/integck.c @@ -233,7 +233,7 @@ static void check_failed(const char *cond, const char *func, const char *file, fflush(stdout); errmsg("condition '%s' failed in %s() at %s:%d", - cond, func, __FILE__, __LINE__); + cond, func, file, line); normsg("error %d (%s)", error, strerror(error)); /* * Note, to make this work well you need: |