diff --git a/install/dracut-install.c b/install/dracut-install.c index 395bd582..f1203070 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; } }