mirror of
https://github.com/cc65/cc65.git
synced 2025-08-10 04:25:21 +00:00
Removed a "return" keyword from an inline function that must return (void).
This commit is contained in:
@@ -184,7 +184,7 @@ INLINE CodeLabel* CE_GetLabel (CodeEntry* E, unsigned Index)
|
|||||||
INLINE void CE_ReplaceLabel (CodeEntry* E, CodeLabel* L, unsigned Index)
|
INLINE void CE_ReplaceLabel (CodeEntry* E, CodeLabel* L, unsigned Index)
|
||||||
/* Replace the code label at the specified index with L */
|
/* Replace the code label at the specified index with L */
|
||||||
{
|
{
|
||||||
return CollReplace (&E->Labels, L, Index);
|
CollReplace (&E->Labels, L, Index);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
# define CE_ReplaceLabel(E, L, Index) CollReplace (&(E)->Labels, (L), (Index))
|
# define CE_ReplaceLabel(E, L, Index) CollReplace (&(E)->Labels, (L), (Index))
|
||||||
|
Reference in New Issue
Block a user