]> Git Repo - linux.git/commitdiff
btrfs: tests: uninline member definitions in free_space_extent
authorDavid Sterba <[email protected]>
Fri, 23 Sep 2016 11:57:06 +0000 (13:57 +0200)
committerDavid Sterba <[email protected]>
Mon, 3 Oct 2016 16:52:15 +0000 (18:52 +0200)
The recommended way is to put all members on separate lines.

Signed-off-by: David Sterba <[email protected]>
fs/btrfs/tests/free-space-tree-tests.c

index 061b4d5315c4a956bddb3461b647f2515b4b24e6..6e144048a72eedb206e902bf71fe19d6c6555c0e 100644 (file)
@@ -24,7 +24,8 @@
 #include "../transaction.h"
 
 struct free_space_extent {
-       u64 start, length;
+       u64 start;
+       u64 length;
 };
 
 static int __check_free_space_extents(struct btrfs_trans_handle *trans,
This page took 0.054231 seconds and 4 git commands to generate.