From: Harald Hoyer Date: Mon, 15 Mar 2021 11:40:04 +0000 (+0100) Subject: style(install): astyle post correction X-Git-Tag: 054~292 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ec7fa190efe83e0cacd49aac55b582a32133e55;p=thirdparty%2Fdracut.git style(install): astyle post correction --- diff --git a/install/dracut-install.c b/install/dracut-install.c index 395bd582c..f12030708 100644 --- a/install/dracut-install.c +++ b/install/dracut-install.c @@ -336,13 +336,11 @@ normal_copy: if (errno != EINTR) { ret = -1; if (geteuid() == 0 && no_xattr == false) - log_error - ("Failed: cp --reflink=auto --sparse=auto --preserve=mode,xattr,timestamps -fL %s %s", - src, dst); + log_error("Failed: cp --reflink=auto --sparse=auto --preserve=mode,xattr,timestamps -fL %s %s", + src, dst); else - log_error - ("Failed: cp --reflink=auto --sparse=auto --preserve=mode,timestamps -fL %s %s", - src, dst); + log_error("Failed: cp --reflink=auto --sparse=auto --preserve=mode,timestamps -fL %s %s", + src, dst); break; } }