aboutsummaryrefslogtreecommitdiff
path: root/libjava/win32.cc
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2002-04-11 22:23:43 +0000
committerTom Tromey <tromey@gcc.gnu.org>2002-04-11 22:23:43 +0000
commitc646bade050cab6b1442e34dbf47c2ea226e8fb2 (patch)
tree18d6050da1ee9cbf3ffcc6b721762d93253f9df6 /libjava/win32.cc
parent7825d1cf588df417029157ce34a21bb1a4a1c0ca (diff)
downloadgcc-c646bade050cab6b1442e34dbf47c2ea226e8fb2.zip
gcc-c646bade050cab6b1442e34dbf47c2ea226e8fb2.tar.gz
gcc-c646bade050cab6b1442e34dbf47c2ea226e8fb2.tar.bz2
* win32.cc (_Jv_platform_initProperties): Fix spelling of _Jv_Free.
From-SVN: r52183
Diffstat (limited to 'libjava/win32.cc')
-rw-r--r--libjava/win32.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/win32.cc b/libjava/win32.cc
index 912ca1c..c5f4340 100644
--- a/libjava/win32.cc
+++ b/libjava/win32.cc
@@ -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)