diff options
Diffstat (limited to 'src/commands/dd.c')
-rw-r--r-- | src/commands/dd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/commands/dd.c b/src/commands/dd.c index 6b973e2..78f6041 100644 --- a/src/commands/dd.c +++ b/src/commands/dd.c @@ -29,16 +29,16 @@ COMMAND(dd) { char* str = argv[i] + 3; bs = get_number(str); if (bs < 1) { - error("error: block size must be greater than 0"); + error("block size must be greater than 0"); } } else if (prefix("count=", argv[i])) { char* str = argv[i] + 6; count = get_number(str); if (count < 1) { - error("error: count must be greather than 0"); + error("count must be greather than 0"); } } else { - error("error: unkown option %s", argv[i]); + error("unkown option %s", argv[i]); } } |