summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-09-29 18:00:28 +0000
committerJim Meyering <jim@meyering.net>2002-09-29 18:00:28 +0000
commit0863bbf447b0125b27057ed6e907c6ca2aa8e671 (patch)
tree2517042977c97834676d33f8d54b74da51c74037
parente16b6e395b6199118db13b5fa45030de992b47c2 (diff)
downloadcoreutils-0863bbf447b0125b27057ed6e907c6ca2aa8e671.tar.xz
(main): Split a long line.
-rw-r--r--src/touch.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/touch.c b/src/touch.c
index d352bb447..0adc6dbdc 100644
--- a/src/touch.c
+++ b/src/touch.c
@@ -369,7 +369,8 @@ main (int argc, char **argv)
{
struct tm const *tm = localtime (&newtime);
error (0, 0,
- _("warning: `touch %s' is obsolete; use `touch -t %04d%02d%02d%02d%02d.%02d'"),
+ _("warning: `touch %s' is obsolete; use\
+ `touch -t %04d%02d%02d%02d%02d.%02d'"),
argv[optind],
tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
tm->tm_hour, tm->tm_min, tm->tm_sec);