# HG changeset patch # User aidan # Date 1148413110 0 # Node ID a9bb932a03b54706ea87ce2cc3453f677928668b # Parent 5a3b5e10f3999eef1e0f0bc0bf5315b5b9955366 [xemacs-hg @ 2006-05-23 19:38:29 by aidan] Fix Win32 build; cast stderr_out string arguments to const CIbyte * diff -r 5a3b5e10f399 -r a9bb932a03b5 src/ChangeLog --- 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 + + * 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 * .gdbinit.in: Moved to etc. diff -r 5a3b5e10f399 -r a9bb932a03b5 src/file-coding.c --- 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 */