Fix sysmerge(8) -c short option not working.

This commit is contained in:
Jonas 'Sortie' Termansen 2020-12-27 22:34:20 +01:00
parent 1a1c006982
commit 4de24d1f96
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2016, 2018 Jonas 'Sortie' Termansen.
* Copyright (c) 2016, 2018, 2020 Jonas 'Sortie' Termansen.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -91,7 +91,7 @@ int main(int argc, char* argv[])
char c;
while ( (c = *++arg) ) switch ( c )
{
case 'c': cancel = false; break;
case 'c': cancel = true; break;
case 'w': wait = true; break;
default:
fprintf(stderr, "%s: unknown option -- '%c'\n", argv0, c);