diff --git a/src/util/check.cpp b/src/util/check.cpp index c4982ff4ad..34b9d376a7 100644 --- a/src/util/check.cpp +++ b/src/util/check.cpp @@ -8,6 +8,7 @@ #include #endif +#include #include #include @@ -16,7 +17,10 @@ std::string StrFormatInternalBug(const char* msg, const char* file, int line, const char* func) { - return strprintf("Internal bug detected: \"%s\"\n%s:%d (%s)\nPlease report this issue here: %s\n", msg, file, line, func, PACKAGE_BUGREPORT); + return strprintf("Internal bug detected: \"%s\"\n%s:%d (%s)\n" + "%s %s\n" + "Please report this issue here: %s\n", + msg, file, line, func, PACKAGE_NAME, FormatFullVersion(), PACKAGE_BUGREPORT); } NonFatalCheckError::NonFatalCheckError(const char* msg, const char* file, int line, const char* func)