[runtime] Don't prepend '0x' to %p-formatted numbers.
commit481827b6af11dc2f4e6710d143048f0d803a4714
authorRolf Bjarne Kvinge <rolf@xamarin.com>
Wed, 21 Feb 2018 09:46:28 +0000 (21 10:46 +0100)
committermonojenkins <jo.shields+jenkins@xamarin.com>
Fri, 23 Feb 2018 10:15:19 +0000 (23 05:15 -0500)
tree0b3a9e25c1b86280ed085e1e0b453b571634c6dd
parent5eb4191943820630802916e9d80a41be88315331
[runtime] Don't prepend '0x' to %p-formatted numbers.

%p-formatted numbers already include '0x'

Fixes this output when dumping threads:

    "Threadpool worker" tid=0x0x7000105cc000 this=0x0x10bc18508 , thread handle : 0x7fbb9e6c6c90, state : not waiting

to become:

    "Threadpool worker" tid=0x7000105cc000 this=0x10bc18508 , thread handle : 0x7fbb9e6c6c90, state : not waiting
mono/mini/mini-exceptions.c