Fix warnings caused by using 0x%x to print pointers
authorIra W. Snyder <devel@irasnyder.com>
Thu, 31 Jan 2008 08:19:11 +0000 (00:19 -0800)
committerIra W. Snyder <devel@irasnyder.com>
Thu, 31 Jan 2008 08:19:11 +0000 (00:19 -0800)
commitd7889f80f7846c3f6d3051e5b575cf8dd9c02ccd
treed24c629cda98df4d60f5e815666e3afb1acf0fec
parenta9bcc5ec168b90ddb5261652a205fff5e3170b42
Fix warnings caused by using 0x%x to print pointers

Using 0x%x in a format string to print pointers gives some warnings, because
it is supposed to be printing integers. Using 0x%p is more portable, and
does not emit the warnings.
tilda-controller.c
tilda-terminal.c
tilda-window.c