diff options
| author | David Sterba <[email protected]> | 2019-03-15 16:28:46 +0000 |
|---|---|---|
| committer | David Sterba <[email protected]> | 2019-04-29 17:02:26 +0000 |
| commit | 770e0cc040b07eb54f6cb119a44bf6ff742338eb (patch) | |
| tree | 71a53235203a6702c66addd8956b9b06eed45a7b /fs/btrfs/tests/extent-buffer-tests.c | |
| parent | btrfs: tests: use standard error message after extent buffer allocation failure (diff) | |
| download | kernel-770e0cc040b07eb54f6cb119a44bf6ff742338eb.tar.gz kernel-770e0cc040b07eb54f6cb119a44bf6ff742338eb.zip | |
btrfs: tests: use standard error message after path allocation failure
Signed-off-by: David Sterba <[email protected]>
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 dc2582554cf0..a1b9f9b5978e 100644 --- a/fs/btrfs/tests/extent-buffer-tests.c +++ b/fs/btrfs/tests/extent-buffer-tests.c @@ -43,7 +43,7 @@ static int test_btrfs_split_item(u32 sectorsize, u32 nodesize) path = btrfs_alloc_path(); if (!path) { - test_err("could not allocate path"); + test_std_err(TEST_ALLOC_PATH); ret = -ENOMEM; goto out; } |
