diff options
author | Harald Hoyer <harald@redhat.com> | 2011-06-30 15:19:38 +0200 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2011-06-30 15:19:38 +0200 |
commit | d971228752cb6f2993f6609c9a07d49037d36806 (patch) | |
tree | ff15d694b4b4996b2f57820f483a9c29f3113f66 | |
parent | e261c5f619e059e96e1ef9977fa1665cd8223541 (diff) |
udev/udevadm-monitor.c: fixed misplaced brace
-rw-r--r-- | udev/udevadm-monitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/udev/udevadm-monitor.c b/udev/udevadm-monitor.c index fd1b8ced85..0852fe301b 100644 --- a/udev/udevadm-monitor.c +++ b/udev/udevadm-monitor.c @@ -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) { |