diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2008-10-03 10:33:15 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2008-10-03 10:33:15 +0200 |
commit | ee137da3897d154e0c62b03ea7ef3c3359753adc (patch) | |
tree | a1447cf8bd6bc9191d8f797edd132ca4f8882b46 /udev/lib | |
parent | 2f1a291e2f50075e46cd55568a5ba6ba4f6a2afc (diff) |
udevadm: info - fix --query=all for devices without a device node
Diffstat (limited to 'udev/lib')
-rw-r--r-- | udev/lib/test-libudev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/udev/lib/test-libudev.c b/udev/lib/test-libudev.c index 47fbf3b42a..854a0a9faa 100644 --- a/udev/lib/test-libudev.c +++ b/udev/lib/test-libudev.c @@ -104,7 +104,7 @@ static int test_device(struct udev *udev, const char *syspath) printf("looking at device: %s\n", syspath); device = udev_device_new_from_syspath(udev, syspath); if (device == NULL) { - printf("no device\n"); + printf("no device found\n"); return -1; } print_device(device); |