Don't use plain %x to print pointer values. I had changed it from %p
authorDan Gohman <gohman@apple.com>
Fri, 5 Dec 2008 23:39:24 +0000 (23:39 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 5 Dec 2008 23:39:24 +0000 (23:39 +0000)
commitdd17b25611018fa576a7b941d5c1d54ac489c13c
tree4f1d329ffbf4975290921f83e2213c7e733c9714
parent3b954815e1e592842d17119bada7e2f0c64bfee3
Don't use plain %x to print pointer values. I had changed it from %p
since %p isn't formatted consistently, but obviously plain %x is wrong.
PRIxPTR with a cast to uintptr_t would work here, but that requires
inconvenient build-system changes. %lu works on all current and
foreseable future hosts.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60616 91177308-0d34-0410-b5e6-96231b3b80d8
lib/System/Unix/Signals.inc