summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiu Hui <onlyflyer@gmail.com>2009-01-07 14:57:12 -0500
committerChris Mason <chris.mason@oracle.com>2009-01-07 14:57:12 -0500
commit50e571e5b7ff95c94803c9668a8550ed68571db5 (patch)
treeeddb56b432beefa0857788cf94807ac29e163f33
parent238fdcca20d09ab29bb55832dfae35889af4269b (diff)
Fix compile error in quick-test.c of btrfs progs
-rw-r--r--quick-test.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/quick-test.c b/quick-test.c
index 44c23185..351c7061 100644
--- a/quick-test.c
+++ b/quick-test.c
@@ -18,6 +18,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <fcntl.h>
#include "kerncompat.h"
#include "radix-tree.h"
#include "ctree.h"
@@ -96,7 +97,7 @@ int main(int ac, char **av) {
printf("node %p level %d total ptrs %d free spc %lu\n", root->node,
btrfs_header_level(root->node),
btrfs_header_nritems(root->node),
- BTRFS_NODEPTRS_PER_BLOCK(root) -
+ (unsigned long)BTRFS_NODEPTRS_PER_BLOCK(root) -
btrfs_header_nritems(root->node));
printf("all searches good, deleting some items\n");
i = 0;