diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2013-06-06 18:35:30 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2013-06-06 18:35:30 -0400 |
commit | f90cec7e845b681aeeec55a6711c289b28790742 (patch) | |
tree | 00bd1856ed9522ca55bad96d106a462e42f5aef8 /src/udev/udevadm-hwdb.c | |
parent | 74b55d4d6dd6b3acfb2a40461611eef72906daaf (diff) |
Fix ordering of params for conf_files_list_strv
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/udev/udevadm-hwdb.c')
-rw-r--r-- | src/udev/udevadm-hwdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/udevadm-hwdb.c b/src/udev/udevadm-hwdb.c index 4c341a319c..ded88b19e1 100644 --- a/src/udev/udevadm-hwdb.c +++ b/src/udev/udevadm-hwdb.c @@ -546,7 +546,7 @@ static int adm_hwdb(struct udev *udev, int argc, char *argv[]) { } trie->nodes_count++; - err = conf_files_list_strv(&files, root_path, ".hwdb", (const char **)conf_file_dirs); + err = conf_files_list_strv(&files, ".hwdb", root_path, (const char **)conf_file_dirs); if (err < 0) { log_error("failed to enumerate hwdb files: %s\n", strerror(-err)); rc = EXIT_FAILURE; |