瀏覽代碼

system_win32: fix function prototype

- Change if_nametoindex parameter type from char * to const char *.

Follow-up to 09eef8af from this morning.

Bug: https://github.com/curl/curl/commit/09eef8af#r33716067
Gisle Vanem 5 年之前
父節點
當前提交
48b9ea4379
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/system_win32.h

+ 1 - 1
lib/system_win32.h

@@ -49,7 +49,7 @@ typedef enum {
 } PlatformIdentifier;
 
 /* We use our own typedef here since some headers might lack this */
-typedef unsigned int(WINAPI *IF_NAMETOINDEX_FN)(char *);
+typedef unsigned int(WINAPI *IF_NAMETOINDEX_FN)(const char *);
 
 /* This is used instread of if_nametoindex if available on Windows */
 IF_NAMETOINDEX_FN Curl_if_nametoindex;