mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-18 00:50:44 -08:00
Annotate an implicit conversion with a cast
Copied from Perforce Change: 19150 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
f4ccaf98b3
commit
de644fc9df
1 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
/* impl.c.fmtdy: DYLAN OBJECT FORMAT IMPLEMENTATION
|
||||
*
|
||||
* $HopeName: MMsrc!fmtdy.c(trunk.16) $
|
||||
* $HopeName: MMsrc!fmtdy.c(trunk.17) $
|
||||
* Copyright (C) 1996,1997 Harlequin Group, all rights reserved.
|
||||
*
|
||||
* .readership: MPS developers, Dylan developers
|
||||
|
|
@ -324,7 +324,7 @@ static mps_res_t dylan_scan_pat(mps_ss_t mps_ss,
|
|||
pat = *pc++;
|
||||
loop: if(pat == 0) goto pat;
|
||||
++pp;
|
||||
b = pat & 1;
|
||||
b = (int)(pat & 1);
|
||||
pat >>= 1;
|
||||
if(b == 0) goto loop;
|
||||
r = *(pp-1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue