Mercurial > hg > xemacs-beta
changeset 3420:a9bb932a03b5
[xemacs-hg @ 2006-05-23 19:38:29 by aidan]
Fix Win32 build; cast stderr_out string arguments to const CIbyte *
author | aidan |
---|---|
date | Tue, 23 May 2006 19:38:30 +0000 |
parents | 5a3b5e10f399 |
children | 3068686e6ab8 |
files | src/ChangeLog src/file-coding.c |
diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Tue May 23 15:14:35 2006 +0000 +++ b/src/ChangeLog Tue May 23 19:38:30 2006 +0000 @@ -1,3 +1,8 @@ +2006-05-23 Aidan Kehoe <kehoea@parhasard.net> + + * file-coding.c (output_bytes_in_ascii_and_hex): + Fix a Win32 build failure introduced by my last commit. + 2006-05-23 Stephen J. Turnbull <stephen@xemacs.org> * .gdbinit.in: Moved to etc.
--- a/src/file-coding.c Tue May 23 15:14:35 2006 +0000 +++ b/src/file-coding.c Tue May 23 19:38:30 2006 +0000 @@ -3390,7 +3390,8 @@ eicpy_ext(eistr_hex, hex, Qbinary); eicpy_ext(eistr_ascii, ascii, Qbinary); - stderr_out ("%s %s", eidata(eistr_ascii), eidata(eistr_hex)); + stderr_out ("%s %s", (const CIbyte *)(eidata(eistr_ascii)), + (const CIbyte *)eidata(eistr_hex)); } #endif /* DEBUG_XEMACS */