Commit 88fbc45d authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 424202bd
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment