< prev index next >

src/hotspot/share/gc/z/zErrno.cpp

Print this page
rev 52870 : 8214944: replace strerror by os::strerror

@@ -44,7 +44,7 @@
 bool ZErrno::operator!=(int error) const {
   return _error != error;
 }
 
 const char* ZErrno::to_string() const {
-  return strerror(_error);
+  return os::strerror(_error);
 }
< prev index next >