summaryrefslogtreecommitdiff
path: root/quick-test.c
diff options
context:
space:
mode:
authorDimitri John Ledkov <xnox@ubuntu.com>2018-12-11 10:30:30 +1100
committerDimitri John Ledkov <xnox@ubuntu.com>2018-12-11 10:30:30 +1100
commit59d2f4ec0b9dff7b56da34541dffd3e676adf584 (patch)
tree0f982d10b206f248f13de6ba48617e9bdae5e5f5 /quick-test.c
parent3b9cf4c8cda0818e4d3f9892ece9f7d99de13b03 (diff)
parent5b162a39be9dec46a22c815f43fc337b920b4252 (diff)
Update upstream source from tag 'upstream/4.19.1'
Update to upstream version '4.19.1' with Debian dir 171bf4d92c150acf94e8e0a7633c4349c4e39ad6
Diffstat (limited to 'quick-test.c')
-rw-r--r--quick-test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/quick-test.c b/quick-test.c
index 5da47c32..1712adc4 100644
--- a/quick-test.c
+++ b/quick-test.c
@@ -94,7 +94,7 @@ int main(int ac, char **av) {
fprintf(stderr, "search %d:%d\n", num, i);
ret = btrfs_search_slot(NULL, root, &ins, &path, 0, 0);
if (ret) {
- btrfs_print_tree(root, root->node, 1);
+ btrfs_print_tree(root->node, 1);
printf("unable to find %d\n", num);
exit(1);
}
@@ -171,7 +171,7 @@ int main(int ac, char **av) {
fprintf(stderr, "search %d:%d\n", num, i);
ret = btrfs_search_slot(NULL, root, &ins, &path, 0, 0);
if (ret) {
- btrfs_print_tree(root, root->node, 1);
+ btrfs_print_tree(root->node, 1);
printf("unable to find %d\n", num);
exit(1);
}
@@ -220,7 +220,7 @@ int main(int ac, char **av) {
btrfs_commit_transaction(trans, root);
printf("tree size is now %d\n", tree_size);
printf("root %p commit root %p\n", root->node, root->commit_root);
- btrfs_print_tree(root, root->node, 1);
+ btrfs_print_tree(root->node, 1);
close_ctree(root);
return 0;
}