chiark / gitweb /
Removed klibc/klibc.spec as it is autogenerated
[elogind.git] / udevtest.c
index 2caa654d4c9d5ed79fbea7743be6ff30afd7a748..93387f76d0b9d8e462a7b1b8a50c3e966353a979 100644 (file)
@@ -64,16 +64,16 @@ int main(int argc, char *argv[], char *envp[])
 
        info("version %s", UDEV_VERSION);
 
-       if (argc != 3) {
-               info("Usage: udevtest <devpath> <subsystem>");
-               return 1;
-       }
-
        /* initialize our configuration */
        udev_init_config();
        if (udev_log_priority < LOG_INFO)
                udev_log_priority = LOG_INFO;
 
+       if (argc != 3) {
+               info("Usage: udevtest <devpath> <subsystem>");
+               return 1;
+       }
+
        /* remove sysfs_path if given */
        if (strncmp(argv[1], sysfs_path, strlen(sysfs_path)) == 0)
                devpath = &argv[1][strlen(sysfs_path)] ;