diff options
author | Kay Sievers <kay@vrfy.org> | 2012-10-22 18:23:08 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2012-10-23 16:43:32 +0200 |
commit | 796b06c21b62d13c9021e2fbd9c58a5c6edb2764 (patch) | |
tree | f46dc94e7589364887b9bb91589010f41d29706d /src/tmpfiles | |
parent | 59bb9d9a14889bee001706a32a518fe0a5009048 (diff) |
udev: add hardware database support
Diffstat (limited to 'src/tmpfiles')
-rw-r--r-- | src/tmpfiles/tmpfiles.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index bf900fa3d9..c32cbd1aea 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -1365,7 +1365,7 @@ int main(int argc, char *argv[]) { for (j = optind; j < argc; j++) { char *fragment; - fragment = resolve_fragment(argv[j], (const char**) conf_file_dirs); + fragment = resolve_fragment(argv[j], (const char **)conf_file_dirs); if (!fragment) { log_error("Failed to find a %s file: %m", argv[j]); r = EXIT_FAILURE; @@ -1379,8 +1379,7 @@ int main(int argc, char *argv[]) { } else { char **files, **f; - r = conf_files_list_strv(&files, ".conf", - (const char **) conf_file_dirs); + r = conf_files_list_strv(&files, ".conf", (const char **)conf_file_dirs); if (r < 0) { log_error("Failed to enumerate tmpfiles.d files: %s", strerror(-r)); r = EXIT_FAILURE; |