diff options
author | Kay Sievers <kay@vrfy.org> | 2014-07-30 09:46:35 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-07-30 09:46:35 -0400 |
commit | 65af29f3f7c43cdcc73fc224cfbf3e1ccbd9dd60 (patch) | |
tree | 3c7e0ca062f4e118378880cc857d071c9ab8920f /src/udev/udevadm-monitor.c | |
parent | 471a5f341168cff3f07474b7c4a88779bdd8ca1d (diff) |
udev: place opening { at the same line as the function declaration
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/udev/udevadm-monitor.c')
-rw-r--r-- | src/udev/udevadm-monitor.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/udev/udevadm-monitor.c b/src/udev/udevadm-monitor.c index a54aa82c73..e776fb99dc 100644 --- a/src/udev/udevadm-monitor.c +++ b/src/udev/udevadm-monitor.c @@ -37,14 +37,12 @@ static bool udev_exit; -static void sig_handler(int signum) -{ +static void sig_handler(int signum) { if (signum == SIGINT || signum == SIGTERM) udev_exit = true; } -static void print_device(struct udev_device *device, const char *source, int prop) -{ +static void print_device(struct udev_device *device, const char *source, int prop) { struct timespec ts; clock_gettime(CLOCK_MONOTONIC, &ts); @@ -75,8 +73,7 @@ static void help(void) { " -h,--help\n\n"); } -static int adm_monitor(struct udev *udev, int argc, char *argv[]) -{ +static int adm_monitor(struct udev *udev, int argc, char *argv[]) { struct sigaction act = {}; sigset_t mask; bool prop = false; |