Skip to content

Commit

Permalink
sm_hash: remove incorrect "0x"
Browse files Browse the repository at this point in the history
The value is not hex so don't print an "0x".

Signed-off-by: Dan Carpenter <[email protected]>
  • Loading branch information
Dan Carpenter committed Oct 25, 2022
1 parent a3c666a commit 22115bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sm_hash.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ int main(int argc, char **argv)

hash = str_to_llu_hash_helper(argv[1]);

printf("0x%llu\n", hash);
printf("%llu\n", hash);

return 0;
}

0 comments on commit 22115bb

Please sign in to comment.