]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
system_win32: fix typo
authorJay Satiro <raysatiro@yahoo.com>
Thu, 5 Sep 2024 06:30:07 +0000 (02:30 -0400)
committerJay Satiro <raysatiro@yahoo.com>
Thu, 5 Sep 2024 14:10:20 +0000 (10:10 -0400)
lib/system_win32.c

index 7b9d14a7aac8d99cdb4a0c2d1b68341b108f8db4..c3e1fabfbf20d9968641fcf19d5d5b03dbcc6dfc 100644 (file)
@@ -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;