Replace tabs with spaces; remove trailing spaces

This commit is contained in:
Mike Gelfand
2015-01-02 11:15:31 +00:00
parent 9a3b965ce4
commit 440f482d01
42 changed files with 108 additions and 108 deletions

View File

@@ -86,12 +86,12 @@ parseCommandLine (int argc, const char ** argv)
break;
case 's':
if (optarg)
{
if (optarg)
{
char * endptr = NULL;
piecesize_kib = strtoul (optarg, &endptr, 10);
if (endptr && *endptr=='M')
piecesize_kib *= KiB;
piecesize_kib *= KiB;
}
break;