Michael Stefaniuc : dmime: Use the ARRAY_SIZE() macro.

Alexandre Julliard julliard at winehq.org
Tue Oct 23 16:10:03 CDT 2018


Module: wine
Branch: master
Commit: 4059759ccd34870c4119aece00e7b68eba53ca60
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=4059759ccd34870c4119aece00e7b68eba53ca60

Author: Michael Stefaniuc <mstefani at winehq.org>
Date:   Tue Oct 23 19:42:29 2018 +0200

dmime: Use the ARRAY_SIZE() macro.

Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/dmime/dmutils.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/dmime/dmutils.c b/dlls/dmime/dmutils.c
index c51d579..cb5fd32 100644
--- a/dlls/dmime/dmutils.c
+++ b/dlls/dmime/dmutils.c
@@ -386,7 +386,7 @@ const char *debugstr_dmguid (const GUID *id) {
 	unsigned int i;
 
 	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;
 	}
@@ -430,7 +430,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));
 }
 
 const char *debugstr_DMUS_OBJECTDESC (LPDMUS_OBJECTDESC pDesc) {




More information about the wine-cvs mailing list