[Mplayer-cvslog] CVS: main/loader ext.c,1.11,1.12
Atmosfear
syncmail at mplayerhq.hu
Sun Oct 31 16:40:49 CET 2004
CVS change done by Atmosfear
Update of /cvsroot/mplayer/main/loader
In directory mail:/var2/tmp/cvs-serv24191/loader
Modified Files:
ext.c
Log Message:
gcc-4.0.0-20041024 compile-fix
Index: ext.c
===================================================================
RCS file: /cvsroot/mplayer/main/loader/ext.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ext.c 10 Sep 2004 22:22:02 -0000 1.11
+++ ext.c 31 Oct 2004 15:40:47 -0000 1.12
@@ -472,7 +472,7 @@
if (type&MEM_RESERVE && (unsigned)address&0xffff) {
size += (unsigned)address&0xffff;
- (unsigned)address &= ~0xffff;
+ address = (unsigned)address&~0xffff;
}
pgsz = sysconf(_SC_PAGESIZE);
if (type&MEM_COMMIT && (unsigned)address%pgsz) {
More information about the MPlayer-cvslog
mailing list