summaryrefslogtreecommitdiff
path: root/src/test/test-libudev.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/test-libudev.c')
-rw-r--r--src/test/test-libudev.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/test-libudev.c b/src/test/test-libudev.c
index f5c7ae2c30..481ce65dbf 100644
--- a/src/test/test-libudev.c
+++ b/src/test/test-libudev.c
@@ -21,6 +21,7 @@
#include <sys/epoll.h>
#include "libudev.h"
+#include "util.h"
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
@@ -474,7 +475,7 @@ int main(int argc, char *argv[])
}
/* add sys path if needed */
- if (strncmp(syspath, "/sys", strlen("/sys")) != 0) {
+ if (!startswith(syspath, "/sys")) {
snprintf(path, sizeof(path), "/sys/%s", syspath);
syspath = path;
}