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 3d81a5f1a..11743297a 100644 --- a/coreutils/paste.c +++ b/coreutils/paste.c | |||
@@ -116,7 +116,7 @@ int paste_main(int argc UNUSED_PARAM, char **argv) | |||
116 | 116 | ||
117 | if (opt & PASTE_OPT_DELIMITERS) { | 117 | if (opt & PASTE_OPT_DELIMITERS) { |
118 | if (!delims[0]) | 118 | if (!delims[0]) |
119 | bb_error_msg_and_die("-d '' is not supported"); | 119 | bb_simple_error_msg_and_die("-d '' is not supported"); |
120 | /* unknown mappings are not changed: "\z" -> '\\' 'z' */ | 120 | /* unknown mappings are not changed: "\z" -> '\\' 'z' */ |
121 | /* trailing backslash, if any, is preserved */ | 121 | /* trailing backslash, if any, is preserved */ |
122 | del_cnt = strcpy_and_process_escape_sequences(delims, delims) - delims; | 122 | del_cnt = strcpy_and_process_escape_sequences(delims, delims) - delims; |