diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-04-22 20:51:29 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-04-24 00:25:04 -0400 |
commit | c79bb9e4e2e5b96b2ae2c432bf8b0ff9674fce60 (patch) | |
tree | f33c7648a76b5c19bbae7b08fe567c0cefa0d265 /src/efi-boot-generator | |
parent | fff87a35d9e26c0d4ea41273a963c0eb20e18da4 (diff) |
Standarize on one spelling of symlink error message
It's polite to print the name of the link that wasn't created,
and it makes little sense to print the target.
Diffstat (limited to 'src/efi-boot-generator')
-rw-r--r-- | src/efi-boot-generator/efi-boot-generator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/efi-boot-generator/efi-boot-generator.c b/src/efi-boot-generator/efi-boot-generator.c index 88fa220d2f..4367c536b0 100644 --- a/src/efi-boot-generator/efi-boot-generator.c +++ b/src/efi-boot-generator/efi-boot-generator.c @@ -115,7 +115,7 @@ int main(int argc, char *argv[]) { mkdir_parents(name, 0755); if (symlink("../boot.automount", name) < 0) { - log_error("Failed to create symlink: %m"); + log_error("Failed to create symlink %s: %m", name); return EXIT_FAILURE; } |