Finish moving the parenthesis.

Change-Id: I02f099ef198e360663b03857bdf9538bb63a7de8
Reviewed-on: https://code.wireshark.org/review/15864
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2016-06-12 19:15:40 -07:00
parent 49db7287bf
commit 3f0c7091f7
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ get_os_version_info(GString *str)
g_string_append(str, "unknown Windows version");
return;
}
nativesi_func = (nativesi_func_ptr)GetProcAddress(kernel_dll_handle), "GetNativeSystemInfo");
nativesi_func = (nativesi_func_ptr)GetProcAddress(kernel_dll_handle, "GetNativeSystemInfo");
if(nativesi_func)
nativesi_func(&system_info);
else