From 481ddfa7e4ae85cd5ddc11d09932b27f3e9413cc Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Wed, 23 Nov 2011 17:05:09 +0100 Subject: [PATCH] rm(1) usage now works without crashing. --- utils/rm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/rm.cpp b/utils/rm.cpp index 29ff43dd..0ae402c9 100644 --- a/utils/rm.cpp +++ b/utils/rm.cpp @@ -5,7 +5,7 @@ int main(int argc, char* argv[]) { - if ( argc < 2 ) { printf("usage: %s ...\n"); return 0; } + if ( argc < 2 ) { printf("usage: %s ...\n", argv[0]); return 0; } int result = 0;