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
1 changed files with 1 additions and 1 deletions

View File

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