aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorReese Russell <reese.russell@ymail.com>2023-08-18 02:34:10 +0000
committerReese Russell <reese.russell@ymail.com>2023-08-18 04:04:06 +0000
commit6e8f6468cbf1320b70cf01333002a31b44cb7c33 (patch)
tree3044951c8605bfcc8be81294929f94096ceeff47 /src/util
parent6ce5e8f4758e6fccf59b3980af417ec6c75e383e (diff)
downloadbitcoin-6e8f6468cbf1320b70cf01333002a31b44cb7c33.tar.xz
removed StrFormatInternalBug quote delimitation
Diffstat (limited to 'src/util')
-rw-r--r--src/util/check.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/check.cpp b/src/util/check.cpp
index 795dce7124..c4d4b0cc28 100644
--- a/src/util/check.cpp
+++ b/src/util/check.cpp
@@ -18,7 +18,7 @@
std::string StrFormatInternalBug(std::string_view msg, std::string_view file, int line, std::string_view func)
{
- return strprintf("Internal bug detected: \"%s\"\n%s:%d (%s)\n"
+ 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);