User: aidan
Date: 06/05/23 21:38:33
Modified: xemacs/src ChangeLog file-coding.c
Log:
Fix Win32 build; cast stderr_out string arguments to const CIbyte *
Revision Changes Path
1.967 +5 -0 XEmacs/xemacs/src/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/ChangeLog,v
retrieving revision 1.966
retrieving revision 1.967
diff -u -p -r1.966 -r1.967
--- ChangeLog 2006/05/23 13:18:56 1.966
+++ ChangeLog 2006/05/23 19:38:29 1.967
@@ -1,3 +1,8 @@
+2006-05-23 Aidan Kehoe <kehoea(a)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(a)xemacs.org>
* .gdbinit.in: Moved to etc.
1.54 +2 -1 XEmacs/xemacs/src/file-coding.c
Index: file-coding.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/file-coding.c,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -p -r1.53 -r1.54
--- file-coding.c 2006/05/22 20:28:01 1.53
+++ file-coding.c 2006/05/23 19:38:30 1.54
@@ -3390,7 +3390,8 @@ output_bytes_in_ascii_and_hex (const UEx
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 */
Show replies by date