hotspot/src/os/windows/vm/os_windows.cpp
changeset 15096 3db45569f8c0
parent 14633 58caa6fc3b7c
child 15098 3ed1d0332785
--- a/hotspot/src/os/windows/vm/os_windows.cpp	Mon Dec 17 10:40:52 2012 -0800
+++ b/hotspot/src/os/windows/vm/os_windows.cpp	Wed Dec 19 10:35:08 2012 -0800
@@ -182,7 +182,7 @@
 
       if (!getenv("_ALT_JAVA_HOME_DIR", home_dir, MAX_PATH)) {
           os::jvm_path(home_dir, sizeof(home_dir));
-          // Found the full path to jvm[_g].dll.
+          // Found the full path to jvm.dll.
           // Now cut the path to <java_home>/jre if we can.
           *(strrchr(home_dir, '\\')) = '\0';  /* get rid of \jvm.dll */
           pslash = strrchr(home_dir, '\\');
@@ -1715,7 +1715,7 @@
 
 static char saved_jvm_path[MAX_PATH] = {0};
 
-// Find the full path to the current module, jvm.dll or jvm_g.dll
+// Find the full path to the current module, jvm.dll
 void os::jvm_path(char *buf, jint buflen) {
   // Error checking.
   if (buflen < MAX_PATH) {