msvcp90: Use the ARRAY_SIZE() macro.

Signed-off-by: Mathew Hodson <mathew.hodson@gmail.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Mathew Hodson 2018-07-18 22:04:17 -04:00 committed by Alexandre Julliard
parent be4cb86b75
commit a1fb71c562
1 changed files with 3 additions and 3 deletions

View File

@ -391,7 +391,7 @@ unsigned short __cdecl wctype(const char *property)
}; };
unsigned int i; unsigned int i;
for(i=0; i<sizeof(properties)/sizeof(properties[0]); i++) for(i = 0; i < ARRAY_SIZE(properties); i++)
if(!strcmp(property, properties[i].name)) if(!strcmp(property, properties[i].name))
return properties[i].mask; return properties[i].mask;
@ -2440,7 +2440,7 @@ void __thiscall _vector_base_v4__Internal_throw_exception(void/*_vector_base_v4*
TRACE("(%p %lu)\n", this, idx); TRACE("(%p %lu)\n", this, idx);
if(idx < sizeof(exceptions)/sizeof(exceptions[0])) if(idx < ARRAY_SIZE(exceptions))
throw_exception(exceptions[idx].type, exceptions[idx].msg); throw_exception(exceptions[idx].type, exceptions[idx].msg);
} }
#endif #endif
@ -2463,7 +2463,7 @@ const char* __cdecl _Syserror_map(int err)
TRACE("(%d)\n", err); TRACE("(%d)\n", err);
for(i=0; i<sizeof(syserror_map)/sizeof(syserror_map[0]); i++) for(i = 0; i < ARRAY_SIZE(syserror_map); i++)
{ {
if(syserror_map[i].err == err) if(syserror_map[i].err == err)
return syserror_map[i].str; return syserror_map[i].str;