src/hotspot/share/utilities/vmError.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File webrev Cdiff src/hotspot/share/utilities/vmError.cpp

src/hotspot/share/utilities/vmError.cpp

Print this page

        

*** 478,488 **** } #endif // PRODUCT STEP("printing type of error") ! switch(_id) { case OOM_MALLOC_ERROR: case OOM_MMAP_ERROR: if (_size) { st->print("# Native memory allocation "); st->print((_id == (int)OOM_MALLOC_ERROR) ? "(malloc) failed to allocate " : --- 478,488 ---- } #endif // PRODUCT STEP("printing type of error") ! switch(static_cast<unsigned int>(_id)) { case OOM_MALLOC_ERROR: case OOM_MMAP_ERROR: if (_size) { st->print("# Native memory allocation "); st->print((_id == (int)OOM_MALLOC_ERROR) ? "(malloc) failed to allocate " :
src/hotspot/share/utilities/vmError.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File