mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
rm(1) usage now works without crashing.
This commit is contained in:
parent
5bf22b2c4a
commit
481ddfa7e4
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
|||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
if ( argc < 2 ) { printf("usage: %s <file> ...\n"); return 0; }
|
||||
if ( argc < 2 ) { printf("usage: %s <file> ...\n", argv[0]); return 0; }
|
||||
|
||||
int result = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue