diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2013-12-03 22:27:45 +0100 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2013-12-03 22:27:45 +0100 |
commit | f168c27313e4d7b0aabee037dc9c78a5799f0597 (patch) | |
tree | df9ad884b2fdf45f519d04075dc67c8b82bb2915 /src/test/test-udev.c | |
parent | 53ab52ac6d2a12ba24f3cfd618c12c99871947ed (diff) |
trivial coding style clean ups
- Add space between if/for and the opening parentheses
- Place the opening brace on same line as the function (not for udev)
From the CODING_STYLE
Try to use this:
void foo() {
}
instead of this:
void foo()
{
}
Diffstat (limited to 'src/test/test-udev.c')
-rw-r--r-- | src/test/test-udev.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/test-udev.c b/src/test/test-udev.c index 17825f12b4..bab64c9015 100644 --- a/src/test/test-udev.c +++ b/src/test/test-udev.c @@ -81,8 +81,7 @@ out: } -int main(int argc, char *argv[]) -{ +int main(int argc, char *argv[]) { _cleanup_udev_unref_ struct udev *udev = NULL; _cleanup_udev_event_unref_ struct udev_event *event = NULL; _cleanup_udev_device_unref_ struct udev_device *dev = NULL; |