--- a/hotspot/src/share/vm/logging/logPrefix.hpp Fri Oct 02 10:15:46 2015 +0200
+++ b/hotspot/src/share/vm/logging/logPrefix.hpp Fri Oct 02 11:02:11 2015 +0000
@@ -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; \
} \
};