Fix testcase to not print pointer value

llvm-svn: 3119
This commit is contained in:
Chris Lattner 2002-07-29 19:07:48 +00:00
parent 3913c06cc0
commit 8ef8e3a0d4
1 changed files with 1 additions and 1 deletions

View File

@ -69,6 +69,6 @@ void *HashLookup(unsigned int key, Hash hash)
int
main()
{
printf("&HashLookup = 0x%p\n", HashLookup);
printf("&HashLookup = %d\n", !!HashLookup);
return 0;
}