]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid compiler warning in dynlib.c
authorEli Zaretskii <eliz@gnu.org>
Fri, 26 Apr 2019 07:39:24 +0000 (10:39 +0300)
committerEli Zaretskii <eliz@gnu.org>
Fri, 26 Apr 2019 07:39:24 +0000 (10:39 +0300)
* src/dynlib.c (dynlib_addr) [WINDOWSNT]: Rename the first
argument to be consistent with other platforms.  Cast it to
'void *' to avoid compiler warning as result of changing the
function's signature as part of the last recent change in
dynlib.c.

src/dynlib.c

index 9c1bf4a82af3a37f5df3be4a484ea7144a85c7cc..8c25b75537f04382c7a10760a26c51fb52527821 100644 (file)
@@ -123,7 +123,7 @@ dynlib_sym (dynlib_handle_ptr h, const char *sym)
 }
 
 void
-dynlib_addr (void (*addr) (void), const char **fname, const char **symname)
+dynlib_addr (void (*funcptr) (void), const char **fname, const char **symname)
 {
   static char dll_filename[MAX_UTF8_PATH];
   static GetModuleHandleExA_Proc s_pfn_Get_Module_HandleExA = NULL;
@@ -132,6 +132,7 @@ dynlib_addr (void (*addr) (void), const char **fname, const char **symname)
   HMODULE hm_dll = NULL;
   wchar_t mfn_w[MAX_PATH];
   char mfn_a[MAX_PATH];
+  void *addr = (void *) funcptr;
 
   /* Step 1: Find the handle of the module where ADDR lives.  */
   if (os_subtype == OS_9X