Fix const warning. (mono/mono#15478)
authorJay Krell <jaykrell@microsoft.com>
Tue, 2 Jul 2019 07:08:06 +0000 (00:08 -0700)
committerAlexander Köplinger <alex.koeplinger@outlook.com>
Tue, 2 Jul 2019 07:08:05 +0000 (09:08 +0200)
Commit migrated from https://github.com/mono/mono/commit/d956cf687cb39bab18194a7eea608becfbc372d5

src/mono/mono/eglib/gmodule-win32.c

index 72eaca3..d0a1837 100644 (file)
@@ -175,7 +175,7 @@ g_module_close (GModule *module)
 gchar *
 g_module_build_path (const gchar *directory, const gchar *module_name)
 {
-       char *lib_prefix = "";
+       const char *lib_prefix = "";
        
        if (module_name == NULL)
                return NULL;