Fix: allow -c short option for --color

This commit is contained in:
Josh Davies 2016-06-26 14:33:05 +01:00
parent c623ca889d
commit ad83d9b3a9

@ -141,7 +141,7 @@ int main( int argc, char** argv )
int c; int c;
// while c != -1 // while c != -1
while( (c = getopt_long( argc, argv, "hi:g:m:a:t:", long_options, NULL) ) != -1 ) while( (c = getopt_long( argc, argv, "hi:c:g:m:a:t:", long_options, NULL) ) != -1 )
{ {
switch( c ) switch( c )
{ {