Take stars out of types where they make more sense.
authorJay Krell <jay.krell@cornell.edu>
Tue, 3 Sep 2019 22:47:18 +0000 (15:47 -0700)
committerLarry Ewing <lewing@microsoft.com>
Wed, 4 Sep 2019 17:31:13 +0000 (12:31 -0500)
Co-Authored-By: Larry Ewing <lewing@microsoft.com>
Commit migrated from https://github.com/mono/mono/commit/1f21aae8cb410fb4c6e695489a27eae9d22e265d

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

index 3600825..88dabf1 100644 (file)
@@ -282,7 +282,7 @@ mono_get_module_filename_ex (gpointer process, gpointer mod, gunichar2 **pstr, g
 gboolean
 mono_get_module_basename (gpointer process, gpointer mod, gunichar2 **pstr, guint32 *plength)
 {
-       gunichar2str = NULL;
+       gunichar2 *str = NULL;
        guint32 capacity = MAX_PATH; // tunable
        guint32 length = 0;
        gboolean success = FALSE;
@@ -315,7 +315,7 @@ mono_get_module_basename (gpointer process, gpointer mod, gunichar2 **pstr, guin
 gboolean
 mono_get_current_directory (gunichar2 **pstr, guint32 *plength)
 {
-       gunichar2str = NULL;
+       gunichar2 *str = NULL;
        guint32 capacity = MAX_PATH; // tunable
        guint32 length = 0;
        gboolean success = FALSE;