From: Pádraig Brady Date: Thu, 3 Aug 2017 03:20:22 +0000 (-0700) Subject: maint: avoid a syntax-check failure X-Git-Tag: v8.28~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81a05b32f7c31d8aaf9c06ed6b54774c58b67067;p=thirdparty%2Fcoreutils.git maint: avoid a syntax-check failure * src/shred.c (wipename): As per the comment, the arguments to error() are sufficiently quoted, so split the call over multiple lines to avoid the syntax-check. --- diff --git a/src/shred.c b/src/shred.c index 47cfc26183..1b3ed4cd85 100644 --- a/src/shred.c +++ b/src/shred.c @@ -1112,7 +1112,8 @@ wipename (char *oldname, char const *qoldname, struct Options const *flags) quoting because we picked it. OLDNAME needs to be quoted only the first time. */ char const *old = first ? qoldname : oldname; - error (0, 0, _("%s: renamed to %s"), old, newname); + error (0, 0, + _("%s: renamed to %s"), old, newname); first = false; } memcpy (oldname + (base - newname), base, len + 1);