summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/os
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2016-04-25 15:58:10 -0600
committerBrian Paul <[email protected]>2016-04-27 10:23:19 -0600
commit419e3865713efc17bf48213154c5a96eaaa89443 (patch)
tree93a8bc2746728337b9a7322e69c2dafc0ac27688 /src/gallium/auxiliary/os
parentd902504a677d39ace99b1f34a7a4d06d644dfb3d (diff)
os: s/Elements/ARRAY_SIZE/
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/os')
-rw-r--r--src/gallium/auxiliary/os/os_process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/os/os_process.c b/src/gallium/auxiliary/os/os_process.c
index d2dcd0d7fbc..332e195ef34 100644
--- a/src/gallium/auxiliary/os/os_process.c
+++ b/src/gallium/auxiliary/os/os_process.c
@@ -68,7 +68,7 @@ os_get_process_name(char *procname, size_t size)
char *lpProcessName;
char *lpProcessExt;
- GetModuleFileNameA(NULL, szProcessPath, Elements(szProcessPath));
+ GetModuleFileNameA(NULL, szProcessPath, ARRAY_SIZE(szProcessPath));
lpProcessName = strrchr(szProcessPath, '\\');
lpProcessName = lpProcessName ? lpProcessName + 1 : szProcessPath;