summaryrefslogtreecommitdiff
path: root/wsutil/os_version_info.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2016-06-12 18:45:45 -0700
committerGuy Harris <guy@alum.mit.edu>2016-06-13 01:49:38 +0000
commit49db7287bf4f708a04d7ba891154b9d5efe3541d (patch)
treeefc8429d751a4d64d7f4131e67933ec37e9dcbf7 /wsutil/os_version_info.c
parent010e55ccf42d82ea5c4e085ab58a9a9764c45582 (diff)
downloadwireshark-49db7287bf4f708a04d7ba891154b9d5efe3541d.tar.gz
Fix a compile error.
(Perhaps the Petri dish buildbots should, if a build fails, immediately mark the change as failing the Petri dish build, without waiting for the other build(s), so that you don't have to, for example, wait for the Ubuntu buildbot to finish doing a test build for a change that doesn't affect code built on UN*X.) Change-Id: I89ee1616d35c186fcabc0ec989936fa94116df70 Reviewed-on: https://code.wireshark.org/review/15863 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wsutil/os_version_info.c')
-rw-r--r--wsutil/os_version_info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wsutil/os_version_info.c b/wsutil/os_version_info.c
index 501379d0bc..8480e33a55 100644
--- a/wsutil/os_version_info.c
+++ b/wsutil/os_version_info.c
@@ -239,7 +239,7 @@ get_os_version_info(GString *str)
memset(&system_info, '\0', sizeof system_info);
/* Look for and use the GetNativeSystemInfo() function if available to get the correct processor
* architecture even when running 32-bit Wireshark in WOW64 (x86 emulation on 64-bit Windows) */
- kernel_dll_handle = GetModuleHandle(_T("kernel32.dll");
+ kernel_dll_handle = GetModuleHandle(_T("kernel32.dll"));
if (kernel_dll_handle == NULL) {
/*
* XXX - get the failure reason.