* win32.cc (_Jv_platform_initProperties): Fix spelling of _Jv_Free.
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 11 Apr 2002 22:23:43 +0000 (22:23 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 11 Apr 2002 22:23:43 +0000 (22:23 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@52183 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/win32.cc

index 93228f4..0240a9b 100644 (file)
@@ -1,3 +1,7 @@
+2002-04-11  Tom Tromey  <tromey@redhat.com>
+
+       * win32.cc (_Jv_platform_initProperties): Fix spelling of _Jv_Free.
+
 2002-04-11  Adam King <aking@dreammechanics.com>
            Tom Tromey  <tromey@redhat.com>
 
index 912ca1c..c5f4340 100644 (file)
@@ -88,7 +88,7 @@ _Jv_platform_initProperties (java::util::Properties* newprops)
       if (GetTempPath (buflen, buffer))
        SET ("java.io.tmpdir", buffer);
 
-      _Jv_free (buffer);
+      _Jv_Free (buffer);
     }
   
   // Use GetUserName to set 'user.name'.
@@ -98,7 +98,7 @@ _Jv_platform_initProperties (java::util::Properties* newprops)
     {
       if (GetUserName (buffer, &buflen))
         SET ("user.name", buffer);
-      _Jv_free (buffer);
+      _Jv_Free (buffer);
     }
 
   // According to the api documentation for 'GetWindowsDirectory()', the 
@@ -118,7 +118,7 @@ _Jv_platform_initProperties (java::util::Properties* newprops)
             {
               if (GetWindowsDirectory (winHome, MAX_PATH))
                SET ("user.home", winHome);
-              _Jv_free (winHome);
+              _Jv_Free (winHome);
             }
         }
      }
@@ -137,7 +137,7 @@ _Jv_platform_initProperties (java::util::Properties* newprops)
           sprintf (buffer, "%d.%d", (int) osvi.dwMajorVersion,
                   (int) osvi.dwMinorVersion);
           SET ("os.version", buffer);
-          _Jv_free (buffer);
+          _Jv_Free (buffer);
         }
 
       switch (osvi.dwPlatformId)