diff options
author | Kay Sievers <kay@vrfy.org> | 2014-07-29 15:47:41 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2014-07-29 15:49:25 +0200 |
commit | 9ec6e95b046de71c0198cb9d17acc5462dc76c74 (patch) | |
tree | fc604ecf68adf028611982dcdb34e2d3763a6631 /src/udev/udev-builtin-blkid.c | |
parent | 51f1ec3bbed72d5c0ee0fbcc346ed0fc82d18c96 (diff) |
udev: place opening { at the same line as the function declaration
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 cf194c00c6..810f27d1d0 100644 --- a/src/udev/udev-builtin-blkid.c +++ b/src/udev/udev-builtin-blkid.c @@ -34,8 +34,7 @@ #include "efivars.h" #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'; @@ -182,8 +181,7 @@ static int find_gpt_root(struct udev_device *dev, blkid_probe pr, bool test) { return 0; } -static int probe_superblocks(blkid_probe pr) -{ +static int probe_superblocks(blkid_probe pr) { struct stat st; int rc; @@ -215,8 +213,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) { const char *root_partition; int64_t offset = 0; bool noraid = false; |