Removed a "return" keyword from an inline function that must return (void).
This commit is contained in:
parent
5d198d6842
commit
af4c4f6aaf
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue