summaryrefslogtreecommitdiffstats
path: root/Modules/expat/loadlibrary.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/expat/loadlibrary.c')
-rw-r--r--Modules/expat/loadlibrary.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/expat/loadlibrary.c b/Modules/expat/loadlibrary.c
index 452ae92..35fdf98 100644
--- a/Modules/expat/loadlibrary.c
+++ b/Modules/expat/loadlibrary.c
@@ -84,7 +84,7 @@ HMODULE _Expat_LoadLibrary(LPCTSTR filename)
/* Get a handle to kernel32 so we can access it's functions at runtime */
HMODULE hKernel32 = GetModuleHandle(TEXT("kernel32"));
if(!hKernel32)
- return NULL;
+ return NULL; /* LCOV_EXCL_LINE */
/* Attempt to find LoadLibraryEx() which is only available on Windows 2000
and above */