diff options
Diffstat (limited to 'udev')
-rw-r--r-- | udev/udevinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |