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