diff options
author | Christophe Grenier <[email protected]> | 2009-10-19 21:11:38 +0200 |
---|---|---|
committer | Christophe Grenier <[email protected]> | 2009-10-19 21:11:38 +0200 |
commit | 8a313c74dbf550cb4395e17d27840f8c97b86eb9 (patch) | |
tree | 5afd892dd17cbb32ec5439b91975f574217ebc81 /src/testdisk.c | |
parent | 23e638348764e660b499a1969f36ed19228fefaa (diff) |
Log syntax error in command line
Diffstat (limited to 'src/testdisk.c')
-rw-r--r-- | src/testdisk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testdisk.c b/src/testdisk.c index 23335c5d..125703b6 100644 --- a/src/testdisk.c +++ b/src/testdisk.c @@ -410,8 +410,8 @@ int main( int argc, char **argv ) } else if(cmd_run[0]!='\0') { - log_critical("error in command line: %s\n",cmd_run); - printf("error in command line: %s\n",cmd_run); + log_critical("Syntax error in command line: %s\n",cmd_run); + printf("Syntax error in command line: %s\n",cmd_run); } } switch(command) |