Commit f5c573b1 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

ntdll: Use ARRAY_SIZE instead of open coding it.

parent e6069c25
...@@ -635,7 +635,7 @@ static void init_paths( char *argv[] ) ...@@ -635,7 +635,7 @@ static void init_paths( char *argv[] )
static int pathname[] = { CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1 }; static int pathname[] = { CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1 };
size_t path_size = PATH_MAX; size_t path_size = PATH_MAX;
char *path = malloc( path_size ); char *path = malloc( path_size );
if (path && !sysctl( pathname, sizeof(pathname)/sizeof(pathname[0]), path, &path_size, NULL, 0 )) if (path && !sysctl( pathname, ARRAY_SIZE(pathname), path, &path_size, NULL, 0 ))
bin_dir = realpath_dirname( path ); bin_dir = realpath_dirname( path );
free( path ); free( path );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment