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-btrfs.c | |
parent | 51f1ec3bbed72d5c0ee0fbcc346ed0fc82d18c96 (diff) |
udev: place opening { at the same line as the function declaration
Diffstat (limited to 'src/udev/udev-builtin-btrfs.c')
-rw-r--r-- | src/udev/udev-builtin-btrfs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/udev/udev-builtin-btrfs.c b/src/udev/udev-builtin-btrfs.c index 2baafe6131..4e80a1d1d1 100644 --- a/src/udev/udev-builtin-btrfs.c +++ b/src/udev/udev-builtin-btrfs.c @@ -35,8 +35,7 @@ struct btrfs_ioctl_vol_args { #define BTRFS_IOCTL_MAGIC 0x94 #define BTRFS_IOC_DEVICES_READY _IOR(BTRFS_IOCTL_MAGIC, 39, struct btrfs_ioctl_vol_args) -static int builtin_btrfs(struct udev_device *dev, int argc, char *argv[], bool test) -{ +static int builtin_btrfs(struct udev_device *dev, int argc, char *argv[], bool test) { struct btrfs_ioctl_vol_args args; _cleanup_close_ int fd = -1; int err; |