Fixed a typo
git-svn-id: svn://svn.cc65.org/cc65/trunk@3093 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
f0b8ea1e14
commit
1ec972d0c4
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ INLINE void ED_MakeLVal (ExprDesc* Expr)
|
|||
Expr->Flags |= E_RTYPE_LVAL;
|
||||
}
|
||||
#else
|
||||
# define ED_MakeLVal(Expr) do { (Expr)->Flags |= R_RTYPE_LVAL; } while (0)
|
||||
# define ED_MakeLVal(Expr) do { (Expr)->Flags |= E_RTYPE_LVAL; } while (0)
|
||||
#endif
|
||||
|
||||
#if defined(HAVE_INLINE)
|
||||
|
|
Loading…
Add table
Reference in a new issue