diff options
author | Feifei Xu <xufeifei@linux.vnet.ibm.com> | 2016-06-01 19:18:28 +0800 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2016-06-06 17:17:12 +0200 |
commit | ef9f2db365c31433e52b0c5863793273bb632666 (patch) | |
tree | 9120d4e28c7e4aabc9b8cd69d86215cf4b8945e6 /fs/btrfs/tests/extent-buffer-tests.c | |
parent | d94f43b4c6b88b9393422868d8dfde14c5923858 (diff) | |
download | blackbird-op-linux-ef9f2db365c31433e52b0c5863793273bb632666.tar.gz blackbird-op-linux-ef9f2db365c31433e52b0c5863793273bb632666.zip |
Btrfs: self-tests: Use macros instead of constants and add missing newline
This commit replaces numerical constants with appropriate
preprocessor macros.
Reviewed-by: Josef Bacik <jbacik@fb.com>
Signed-off-by: Chandan Rajendra <chandan@linux.vnet.ibm.com>
Signed-off-by: Feifei Xu <xufeifei@linux.vnet.ibm.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/tests/extent-buffer-tests.c')
-rw-r--r-- | fs/btrfs/tests/extent-buffer-tests.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/tests/extent-buffer-tests.c b/fs/btrfs/tests/extent-buffer-tests.c index 17b110f39f06..4f8cbd1ec5ee 100644 --- a/fs/btrfs/tests/extent-buffer-tests.c +++ b/fs/btrfs/tests/extent-buffer-tests.c @@ -225,6 +225,6 @@ out: int btrfs_test_extent_buffer_operations(u32 sectorsize, u32 nodesize) { - test_msg("Running extent buffer operation tests"); + test_msg("Running extent buffer operation tests\n"); return test_btrfs_split_item(sectorsize, nodesize); } |