aboutsummaryrefslogtreecommitdiff
path: root/src/tests/strhash.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/tests/strhash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/strhash.cpp b/src/tests/strhash.cpp
index 790c5b6..f6528ca 100644
--- a/src/tests/strhash.cpp
+++ b/src/tests/strhash.cpp
@@ -5,7 +5,7 @@ int main( int argc, char *argv[] )
5{ 5{
6 HashFunctionString h; 6 HashFunctionString h;
7 7
8 printf("\"%s\": %d\n", argv[1], h.hash( argv[1] ) ); 8 printf("\"%s\": %lu\n", argv[1], h.hash( argv[1] ) );
9 9
10 return 0; 10 return 0;
11} 11}