Improved (for me) formatting on Mac

Don't yet know whether this will work on Linux.
This commit is contained in:
Simon Brooke 2018-12-08 14:09:57 +00:00
parent 27fd678888
commit 9bfc9074b0
9 changed files with 368 additions and 319 deletions

View file

@ -48,15 +48,15 @@ int main( int argc, char *argv[] ) {
while ( ( option = getopt( argc, argv, "pd" ) ) != -1 ) {
switch ( option ) {
case 'd':
dump_at_end = true;
break;
case 'p':
show_prompt = true;
break;
default:
fwprintf( stderr, L"Unexpected option %c\n", option );
break;
case 'd':
dump_at_end = true;
break;
case 'p':
show_prompt = true;
break;
default:
fwprintf( stderr, L"Unexpected option %c\n", option );
break;
}
}