Mercurial > mplayer.hg
changeset 13827:374178b2a49a
gcc-4.0.0-20041024 compile-fix
author | atmos4 |
---|---|
date | Sun, 31 Oct 2004 15:40:47 +0000 |
parents | 779cd4791811 |
children | b4ad5f0b550d |
files | loader/ext.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/loader/ext.c Sun Oct 31 13:50:11 2004 +0000 +++ b/loader/ext.c Sun Oct 31 15:40:47 2004 +0000 @@ -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) {