--- a/hotspot/src/share/vm/logging/logPrefix.hpp Thu Oct 01 15:14:15 2015 -0400
+++ b/hotspot/src/share/vm/logging/logPrefix.hpp Fri Oct 02 10:43:19 2015 +0200
@@ -49,7 +49,7 @@
static size_t prefix(char* buf, size_t len) { \
int ret = jio_snprintf(buf, len, fmt, fn); \
assert(ret >= 0, \
- err_msg("Failed to prefix log message using prefix ('%s', '%s'), log buffer too small?", fmt, #fn)); \
+ "Failed to prefix log message using prefix ('%s', '%s'), log buffer too small?", fmt, #fn); \
return ret; \
} \
};