Browse Source

btrfs: tests: uninline member definitions in free_space_extent

The recommended way is to put all members on separate lines.

Signed-off-by: David Sterba <dsterba@suse.com>
David Sterba 9 years ago
parent
commit
0e6757859e
1 changed files with 2 additions and 1 deletions
  1. 2 1
      fs/btrfs/tests/free-space-tree-tests.c

+ 2 - 1
fs/btrfs/tests/free-space-tree-tests.c

@@ -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,