From cce9d77393c1af2c69f441feef8565969e5a417d Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Wed, 3 Sep 2008 19:50:36 +0200 Subject: udevadm: info - fix broken --device-id-of-file= --- udev/udevinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'udev') diff --git a/udev/udevinfo.c b/udev/udevinfo.c index 738ffc67de..6501b57d1a 100644 --- a/udev/udevinfo.c +++ b/udev/udevinfo.c @@ -230,7 +230,7 @@ static int stat_device(const char *name, int export, const char *prefix) prefix, major(statbuf.st_dev), prefix, minor(statbuf.st_dev)); } else - printf("%d %d\n", major(statbuf.st_dev), minor(statbuf.st_dev)); + printf("%d:%d\n", major(statbuf.st_dev), minor(statbuf.st_dev)); return 0; } -- cgit v1.2.3-54-g00ecf