1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-04 02:51:31 -08:00

Mps br/padding poolamc.c: (char) casts needed for vc6.0 compiler on platform.w3i3mv

Copied from Perforce
 Change: 167698
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Richard Kistruck 2009-04-01 17:52:55 +01:00
parent 7d6430312d
commit 9318d363ef

View file

@ -2007,9 +2007,9 @@ static void amcReclaimNailed(Pool pool, Trace trace, Seg seg)
/* Free the seg if we can; fixes .nailboard.limitations.middle. */
/* (char) casts needed for VC6.0 compiler on platform.w3i3mv */
cond[0] = emptySeg ? (char)'E' : (char)'e';
cond[1] = (SegBuffer(seg) == NULL) ? (char)'b' : (char)'B';
cond[2] = (SegNailed(seg) == TraceSetEMPTY) ? (char)'n' : (char)'N';
cond[0] = (char)(emptySeg ? 'E' : 'e');
cond[1] = (char)((SegBuffer(seg) == NULL) ? 'b' : 'B');
cond[2] = (char)((SegNailed(seg) == TraceSetEMPTY) ? 'n' : 'N');
cond[3] = '\0';
if(emptySeg
&& (SegBuffer(seg) == NULL)