1
0
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:
Greg King
2021-05-12 19:43:32 -04:00
parent 5d198d6842
commit af4c4f6aaf

View File

@@ -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))