hotspot/src/os/posix/vm/os_posix.cpp
changeset 33105 294e48b4f704
parent 31991 a7dd5bba0fd8
child 33148 68fa8b6c4340
--- a/hotspot/src/os/posix/vm/os_posix.cpp	Mon Sep 28 15:05:02 2015 +0200
+++ b/hotspot/src/os/posix/vm/os_posix.cpp	Tue Sep 29 11:02:08 2015 +0200
@@ -1027,10 +1027,10 @@
   }
 }
 
-#define check_with_errno(check_type, cond, msg)                                      \
-  do {                                                                               \
-    int err = errno;                                                                 \
-    check_type(cond, err_msg("%s; error='%s' (errno=%d)", msg, strerror(err), err)); \
+#define check_with_errno(check_type, cond, msg)                             \
+  do {                                                                      \
+    int err = errno;                                                        \
+    check_type(cond, "%s; error='%s' (errno=%d)", msg, strerror(err), err); \
 } while (false)
 
 #define assert_with_errno(cond, msg)    check_with_errno(assert, cond, msg)