diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-23 19:02:24 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-23 19:02:24 -0800 |
commit | a96e16af6a24bf929032612fb8cd0397ca5aeb11 (patch) | |
tree | e078277313d96531c7fd6a4aec190fbae0e3aefb /stream.c | |
parent | 8ba87177ddfa5e5a77dcc1447da2233a3bf3732c (diff) | |
download | txr-a96e16af6a24bf929032612fb8cd0397ca5aeb11.tar.gz txr-a96e16af6a24bf929032612fb8cd0397ca5aeb11.tar.bz2 txr-a96e16af6a24bf929032612fb8cd0397ca5aeb11.zip |
Follow up on 64 bit compilation warnings.
Diffstat (limited to 'stream.c')
-rw-r--r-- | stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -879,7 +879,7 @@ val vformat(val stream, val fmtstr, va_list vl) continue; case 'p': ptr = va_arg(vl, void *); - value = (int) ptr; + value = (cnum) ptr; strcpy(num_buf, "0x"); sprintf(num_buf + 2, num_fmt->hex, value); goto output_num; |