* Fixed typo in usage text.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31761 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2009-07-26 11:56:02 +00:00
parent ad0c65ea97
commit 2a26c91105

View File

@ -1,5 +1,5 @@
/*
* Copyright 2008, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
* Copyright 2008-2009, Axel Dörfler, axeld@pinc-software.de.
* Distributed under the terms of the MIT License.
*/
@ -31,7 +31,8 @@ usage(int status)
printf("options:\n");
printf(" -f --files Number of files to be created. Defaults to as "
"many as fit.\n");
printf(" -h --size Size of each file. Defaults to 4KB.\n");
printf(" -s --size Size of each file. Defaults to %lldKB.\n",
kDefaultFileSize / 1024);
exit(status);
}