rm(1) usage now works without crashing.

This commit is contained in:
Jonas 'Sortie' Termansen 2011-11-23 17:05:09 +01:00
parent 5bf22b2c4a
commit 481ddfa7e4
1 changed files with 1 additions and 1 deletions

View File

@ -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;