From: adilger Date: Fri, 18 Oct 2002 07:40:21 +0000 (+0000) Subject: Show the size tha we were truncating too. X-Git-Tag: 0.5.15~82 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=15060dcefb328f304ccce7183299cd85f57a675a;p=fs%2Flustre-release.git Show the size tha we were truncating too. --- diff --git a/lustre/tests/truncate.c b/lustre/tests/truncate.c index f21bf9d1..c49fb15 100644 --- a/lustre/tests/truncate.c +++ b/lustre/tests/truncate.c @@ -17,7 +17,8 @@ int main(int argc, char **argv) off = strtoull(argv[2], NULL, 0); err = truncate64(argv[1], off); if ( err ) - printf("Error truncating %s: %s\n", argv[1], strerror(errno)); + printf("Error truncating %s to %Ld: %s\n", argv[1], off, + strerror(errno)); return err; }