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

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


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

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

dmband: Use the ARRAY_SIZE() macro.

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

---

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

diff --git a/dlls/dmband/dmutils.c b/dlls/dmband/dmutils.c
index b121564..e04e9dd 100644
--- a/dlls/dmband/dmutils.c
+++ b/dlls/dmband/dmutils.c
@@ -82,7 +82,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));
 }
 
 /* month number into month name (for debugstr_filetime) */
@@ -506,7 +506,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;
 	}




More information about the wine-cvs mailing list