1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-25 18:50:18 +03:00

udev/udevadm-monitor.c: fixed misplaced brace

This commit is contained in:
Harald Hoyer 2011-06-30 15:19:38 +02:00
parent e261c5f619
commit d971228752

View File

@ -137,10 +137,10 @@ int udevadm_monitor(struct udev *udev, int argc, char *argv[])
" --tag-match=<tag> filter events by tag\n"
" --help\n\n");
goto out;
}
default:
rc = 1;
goto out;
}
}
if (!print_kernel && !print_udev) {