advpack/tests: Use the available 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
f604ffaae6
commit
9cd82ad7ee
|
@ -134,8 +134,8 @@ static void delnode_test(void)
|
|||
|
||||
/* Native DelNode apparently does not support relative paths, so we use
|
||||
absolute paths for testing */
|
||||
currDirLen = GetCurrentDirectoryA(sizeof(currDir) / sizeof(CHAR), currDir);
|
||||
assert(currDirLen > 0 && currDirLen < sizeof(currDir) / sizeof(CHAR));
|
||||
currDirLen = GetCurrentDirectoryA(ARRAY_SIZE(currDir), currDir);
|
||||
assert(currDirLen > 0 && currDirLen < ARRAY_SIZE(currDir));
|
||||
|
||||
if(currDir[currDirLen - 1] == '\\')
|
||||
currDir[--currDirLen] = 0;
|
||||
|
|
Loading…
Reference in New Issue