Commit dd0e2616 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

winebuild: Use the now available ARRAY_SIZE() macro.

parent ec29d40e
...@@ -225,7 +225,7 @@ static void set_target( const char *target ) ...@@ -225,7 +225,7 @@ static void set_target( const char *target )
/* get the OS part */ /* get the OS part */
target_platform = PLATFORM_UNSPECIFIED; /* default value */ target_platform = PLATFORM_UNSPECIFIED; /* default value */
for (i = 0; i < sizeof(platform_names)/sizeof(platform_names[0]); i++) for (i = 0; i < ARRAY_SIZE(platform_names); i++)
{ {
if (!strncmp( platform_names[i].name, platform, strlen(platform_names[i].name) )) if (!strncmp( platform_names[i].name, platform, strlen(platform_names[i].name) ))
{ {
......
...@@ -943,7 +943,7 @@ int get_cpu_from_name( const char *name ) ...@@ -943,7 +943,7 @@ int get_cpu_from_name( const char *name )
{ {
unsigned int i; unsigned int i;
for (i = 0; i < sizeof(cpu_names)/sizeof(cpu_names[0]); i++) for (i = 0; i < ARRAY_SIZE(cpu_names); i++)
if (!strcmp( cpu_names[i].name, name )) return cpu_names[i].cpu; if (!strcmp( cpu_names[i].name, name )) return cpu_names[i].cpu;
return -1; return -1;
} }
......
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