diff options
author | Kay Sievers <kay@vrfy.org> | 2012-06-10 19:31:39 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2012-06-10 19:31:39 +0200 |
commit | 94f7a71442bda7c43191979ea13cc97112745ce4 (patch) | |
tree | 50f68868758654d8504583fda574828a978f3017 /src/tmpfiles/tmpfiles.c | |
parent | ca2e894bdbd06b43800b57074be0e499a3539b0d (diff) |
tmpfiles: fix error message
Diffstat (limited to 'src/tmpfiles/tmpfiles.c')
-rw-r--r-- | src/tmpfiles/tmpfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 12ec0b2f1b..22362eaa4c 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -1321,7 +1321,7 @@ int main(int argc, char *argv[]) { fragment = resolve_fragment(argv[j], conf_file_dirs); if (!fragment) { - log_error("Failed to find any: %s file: %m", argv[j]); + log_error("Failed to find a %s file: %m", argv[j]); r = EXIT_FAILURE; goto finish; } |