Fixed typo in last minute change (spotted by Gerald Pfeifer).

This commit is contained in:
Alexandre Julliard 2003-04-30 17:12:14 +00:00
parent 424202bd9a
commit 88fbc45dc9
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ inline static int is_data_file_module( HMODULE hmod )
static inline int push_language( WORD *list, int pos, WORD lang )
{
int i;
for (i = 0; i < pos; i++) if (list[i] == lang) return;
for (i = 0; i < pos; i++) if (list[i] == lang) return pos;
list[pos++] = lang;
return pos;
}