From: Jay Satiro Date: Thu, 5 Sep 2024 06:30:07 +0000 (-0400) Subject: system_win32: fix typo X-Git-Tag: curl-8_10_0~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=519be2b9d825f74c5632310d9d047043ae21630c;p=thirdparty%2Fcurl.git system_win32: fix typo --- diff --git a/lib/system_win32.c b/lib/system_win32.c index 7b9d14a7aa..c3e1fabfbf 100644 --- a/lib/system_win32.c +++ b/lib/system_win32.c @@ -212,7 +212,7 @@ HMODULE Curl_load_library(LPCTSTR filename) HMODULE hModule = NULL; LOADLIBRARYEX_FN pLoadLibraryEx = NULL; - /* Get a handle to kernel32 so we can access it is functions at runtime */ + /* Get a handle to kernel32 so we can access its functions at runtime */ HMODULE hKernel32 = GetModuleHandle(TEXT("kernel32")); if(!hKernel32) return NULL;