comparison src/share/vm/runtime/os.cpp @ 14358:e5d78f318aec

8026849: Fix typos in the GC code, part 2 Summary: Fixed typos in assert messages, flag descriptions and verbose messages Reviewed-by: stefank, tschatzl
author jwilhelm
date Tue, 10 Dec 2013 15:11:02 +0100
parents 2c95095271e9
children e8ef156f0bc9
comparison
equal deleted inserted replaced
14357:79aa45434291 14358:e5d78f318aec
1195 const char* home, 1195 const char* home,
1196 int home_len, 1196 int home_len,
1197 char fileSep, 1197 char fileSep,
1198 char pathSep) { 1198 char pathSep) {
1199 assert((fileSep == '/' && pathSep == ':') || 1199 assert((fileSep == '/' && pathSep == ':') ||
1200 (fileSep == '\\' && pathSep == ';'), "unexpected seperator chars"); 1200 (fileSep == '\\' && pathSep == ';'), "unexpected separator chars");
1201 1201
1202 // Scan the format string to determine the length of the actual 1202 // Scan the format string to determine the length of the actual
1203 // boot classpath, and handle platform dependencies as well. 1203 // boot classpath, and handle platform dependencies as well.
1204 int formatted_path_len = 0; 1204 int formatted_path_len = 0;
1205 const char* p; 1205 const char* p;