summaryrefslogtreecommitdiff
path: root/hasher.c
diff options
context:
space:
mode:
Diffstat (limited to 'hasher.c')
-rw-r--r--hasher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hasher.c b/hasher.c
index 435dbfa..9511452 100644
--- a/hasher.c
+++ b/hasher.c
@@ -19,7 +19,7 @@ int main() {
line[strlen(line)-1] = '\0';
ret = btrfs_name_hash(line, strlen(line), &result);
BUG_ON(ret);
- printf("hash returns %Lu\n", result);
+ printf("hash returns %llu\n", (unsigned long long)result);
}
return 0;
}