CVS update by stephent xemacs/src ...
xemacs-cvs at xemacs.org
xemacs-cvs at xemacs.org
Fri Jun 22 13:39:11 EDT 2007
User: stephent
Date: 07/06/22 19:39:11
Modified: xemacs/src ChangeLog linuxplay.c
Log:
More 64-bit tweaking for linuxplay crash. <18044.2908.520538.490158 at uwakimon.sk.tsukuba.ac.jp>
Revision Changes Path
1.1073 +5 -0 XEmacs/xemacs/src/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/ChangeLog,v
retrieving revision 1.1072
retrieving revision 1.1073
diff -u -p -r1.1072 -r1.1073
--- ChangeLog 2007/06/22 17:26:20 1.1072
+++ ChangeLog 2007/06/22 17:39:04 1.1073
@@ -1,5 +1,10 @@
2007-06-23 Stephen J. Turnbull <stephen at xemacs.org>
+ * linuxplay.c (linux_play_data_or_file): More 64-bit tweaking, and
+ a typo fix.
+
+2007-06-23 Stephen J. Turnbull <stephen at xemacs.org>
+
* sysdep.h (environ): Needs to be in C_DECLS for C++ build.
2007-06-23 Stephen J. Turnbull <stephen at xemacs.org>
1.22 +3 -2 XEmacs/xemacs/src/linuxplay.c
Index: linuxplay.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/linuxplay.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -p -r1.21 -r1.22
--- linuxplay.c 2007/05/19 17:21:30 1.21
+++ linuxplay.c 2007/06/22 17:39:07 1.22
@@ -275,8 +275,9 @@ linux_play_data_or_file(int fd, Binbyte
fmtType ffmt;
int fmt,speed,tracks;
void *pptr, *optr, *cptr, *sptr;
- int wrtn,rrtn,crtn,prtn;
- Binbyte sndbuf[SNDBUFSZ];
+ int wrtn, crtn;
+ size_t prtn, rrtn;
+ Binbyte sndbuf[SNDBUFSZ];
/* We need to read at least the header information before we can start
doing anything */
More information about the XEmacs-CVS
mailing list