summaryrefslogtreecommitdiff
path: root/hasher.c
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2007-06-12 08:08:04 -0400
committerDavid Woodhouse <dwmw2@hera.kernel.org>2007-06-12 08:08:04 -0400
commit38ef945266758856bf11e385eadaa0872b6d8b30 (patch)
treed33ea2dd8fb941806351f3567fa981f718f95d1b /hasher.c
parentb53a236c3eea3ce01a0054c249cb0b974b9568c6 (diff)
printf cleanups
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 435dbfa5..95114522 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;
}