diff options
Diffstat (limited to 'coreutils/paste.c')
-rw-r--r-- | coreutils/paste.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/paste.c b/coreutils/paste.c index 3d81a5f..1174329 100644 --- a/coreutils/paste.c +++ b/coreutils/paste.c @@ -116,7 +116,7 @@ int paste_main(int argc UNUSED_PARAM, char **argv) if (opt & PASTE_OPT_DELIMITERS) { if (!delims[0]) - bb_error_msg_and_die("-d '' is not supported"); + bb_simple_error_msg_and_die("-d '' is not supported"); /* unknown mappings are not changed: "\z" -> '\\' 'z' */ /* trailing backslash, if any, is preserved */ del_cnt = strcpy_and_process_escape_sequences(delims, delims) - delims; |