summaryrefslogtreecommitdiff
path: root/src/paste.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-10-25 01:05:30 +0200
committerJim Meyering <jim@meyering.net>2006-10-25 01:05:30 +0200
commite81a82b74f44bfddce247d566617137725f11b19 (patch)
tree49abf1426b3f7994ed5791afac1bd798d00325b5 /src/paste.c
parent3e9cc761892d1601101e4b798046a6a5e47bc90d (diff)
downloadcoreutils-e81a82b74f44bfddce247d566617137725f11b19.tar.xz
* src/cat.c (infile): Add "const" to declaration.
* src/csplit.c (prefix): Likewise. * src/printf.c (cfcc_msg): Likewise. * src/tail.c (valid_file_spec): Likewise. * src/cut.c (cut_file): Likewise, for a parameter. * src/expr.c (str_value): Likewise. * src/fold.c (fold_file): Likewise. * src/pr.c (init_header): Likewise. * src/dircolors.c (dc_parse_stream): Likewise, for a local. * src/tr.c (make_printable_str): Likewise. * src/nl.c (body_type, header_type, footer_type, current_type): (separator_str, build_type_arg, nl_file): Likewise, for many. * src/paste.c (main): Don't assign a read-only string to 'optarg'. * src/tac.c (separator, tac_seekable, copy_to_temp): Likewise.
Diffstat (limited to 'src/paste.c')
-rw-r--r--src/paste.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/paste.c b/src/paste.c
index 1903bcd64..414fb8830 100644
--- a/src/paste.c
+++ b/src/paste.c
@@ -463,9 +463,7 @@ main (int argc, char **argv)
{
case 'd':
/* Delimiter character(s). */
- if (optarg[0] == '\0')
- optarg = "\\0";
- delim_arg = optarg;
+ delim_arg = (optarg[0] == '\0' ? "\\0" : optarg);
break;
case 's':