--- 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)