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/udev-builtin-blkid.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/udev-builtin-blkid.c')
-rw-r--r-- | src/udev/udev-builtin-blkid.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/udev/udev-builtin-blkid.c b/src/udev/udev-builtin-blkid.c index 91ce794c99..f97f516462 100644 --- a/src/udev/udev-builtin-blkid.c +++ b/src/udev/udev-builtin-blkid.c @@ -31,8 +31,7 @@ #include "udev.h" -static void print_property(struct udev_device *dev, bool test, const char *name, const char *value) -{ +static void print_property(struct udev_device *dev, bool test, const char *name, const char *value) { char s[256]; s[0] = '\0'; @@ -100,8 +99,7 @@ static void print_property(struct udev_device *dev, bool test, const char *name, } } -static int probe_superblocks(blkid_probe pr) -{ +static int probe_superblocks(blkid_probe pr) { struct stat st; int rc; @@ -133,8 +131,7 @@ static int probe_superblocks(blkid_probe pr) return blkid_do_safeprobe(pr); } -static int builtin_blkid(struct udev_device *dev, int argc, char *argv[], bool test) -{ +static int builtin_blkid(struct udev_device *dev, int argc, char *argv[], bool test) { int64_t offset = 0; bool noraid = false; _cleanup_close_ int fd = -1; |