From: Jay Krell Date: Tue, 2 Jul 2019 07:08:06 +0000 (-0700) Subject: Fix const warning. (mono/mono#15478) X-Git-Tag: submit/tizen/20210909.063632~10331^2~5^2~1039 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2a68d66b1e0bde543b62447d61e4f5a162e9a08d;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Fix const warning. (mono/mono#15478) Commit migrated from https://github.com/mono/mono/commit/d956cf687cb39bab18194a7eea608becfbc372d5 --- diff --git a/src/mono/mono/eglib/gmodule-win32.c b/src/mono/mono/eglib/gmodule-win32.c index 72eaca3..d0a1837 100644 --- a/src/mono/mono/eglib/gmodule-win32.c +++ b/src/mono/mono/eglib/gmodule-win32.c @@ -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;