X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=udev%2Flib%2Ftest-libudev.c;h=d0095f15fc5828cc9cab1a1971b671be93eb678f;hp=3c38600192150e8e3d1b448596afe7e5ff488496;hb=11d543c1ee886ef30c3ef66d7176149d0b126fa5;hpb=b98fd8400542472bd0989a4f03358d403fb71f35 diff --git a/udev/lib/test-libudev.c b/udev/lib/test-libudev.c index 3c3860019..d0095f15f 100644 --- a/udev/lib/test-libudev.c +++ b/udev/lib/test-libudev.c @@ -58,6 +58,8 @@ static void print_device(struct udev_device *device) printf("devpath: '%s'\n", str); str = udev_device_get_subsystem(device); printf("subsystem: '%s'\n", str); + str = udev_device_get_syspath(device); + printf("syspath: '%s'\n", str); str = udev_device_get_devname(device); printf("devname: '%s'\n", str); count = udev_device_get_devlinks(device, print_devlinks_cb, NULL);