dmscript: Use the ARRAY_SIZE() macro.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
47e57c58b6
commit
675ec4662b
|
@ -436,7 +436,7 @@ const char *debugstr_dmguid (const GUID *id) {
|
|||
|
||||
if (!id) return "(null)";
|
||||
|
||||
for (i = 0; i < sizeof(guids)/sizeof(guids[0]); i++) {
|
||||
for (i = 0; i < ARRAY_SIZE(guids); i++) {
|
||||
if (IsEqualGUID(id, guids[i].guid))
|
||||
return guids[i].name;
|
||||
}
|
||||
|
@ -480,7 +480,7 @@ static const char *debugstr_DMUS_OBJ_FLAGS (DWORD flagmask) {
|
|||
FE(DMUS_OBJ_MEMORY),
|
||||
FE(DMUS_OBJ_STREAM)
|
||||
};
|
||||
return debugstr_flags (flagmask, flags, sizeof(flags)/sizeof(flags[0]));
|
||||
return debugstr_flags(flagmask, flags, ARRAY_SIZE(flags));
|
||||
}
|
||||
|
||||
/* dump whole DMUS_OBJECTDESC struct */
|
||||
|
|
Loading…
Reference in New Issue