diff options
author | Bernhard Reutner-Fischer | 2006-06-07 20:17:41 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2006-06-07 20:17:41 +0000 |
commit | 19008b83735341c91fa8a09a072ffe9816c9e423 (patch) | |
tree | 6e35288c247102998a775cbc16f9ec014e00e7fd /coreutils/dd.c | |
parent | 4c5ad2fc90389bf1239f17d84967d07b82f31dd7 (diff) | |
download | busybox-19008b83735341c91fa8a09a072ffe9816c9e423.zip busybox-19008b83735341c91fa8a09a072ffe9816c9e423.tar.gz |
- reuse strings and messages. Saves about 600B
Diffstat (limited to 'coreutils/dd.c')
-rw-r--r-- | coreutils/dd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c index 53aa085..33e7893 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c @@ -96,7 +96,7 @@ int dd_main(int argc, char **argv) noerror = TRUE; ibuf += 7; } else { - bb_error_msg_and_die("invalid conversion `%s'", argv[i]+5); + bb_error_msg_and_die(bb_msg_invalid_arg, argv[i]+5, "conv"); } if (ibuf[0] == '\0') break; if (ibuf[0] == ',') ibuf++; |