aboutsummaryrefslogtreecommitdiff
path: root/src/util/system.h
diff options
context:
space:
mode:
authorstickies-v <stickies-v@protonmail.com>2022-09-14 11:00:14 +0100
committerstickies-v <stickies-v@protonmail.com>2022-09-14 11:00:14 +0100
commit26cf9ea8e44d7fd6450336f567afaedd1275baf7 (patch)
tree2341e9f60d92975477a707b9aff67acb560d1733 /src/util/system.h
parent200d84d5681918523d982b9ddf60d1127edcb448 (diff)
downloadbitcoin-26cf9ea8e44d7fd6450336f567afaedd1275baf7.tar.xz
scripted-diff: rename pszThread to thread_name
Since it is now a string_view instead of a const char*, update the name to reflect that the variable is no longer a "Pointer to String, Zero-terminated" (psz). -BEGIN VERIFY SCRIPT- sed -i s/pszThread/thread_name/ $(git grep -l pszThread src) -END VERIFY SCRIPT-
Diffstat (limited to 'src/util/system.h')
-rw-r--r--src/util/system.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/system.h b/src/util/system.h
index 5f80ca51fc..c8e1de6700 100644
--- a/src/util/system.h
+++ b/src/util/system.h
@@ -51,7 +51,7 @@ bool error(const char* fmt, const Args&... args)
return false;
}
-void PrintExceptionContinue(const std::exception* pex, std::string_view pszThread);
+void PrintExceptionContinue(const std::exception* pex, std::string_view thread_name);
/**
* Ensure file contents are fully committed to disk, using a platform-specific