aboutsummaryrefslogtreecommitdiff
path: root/src/sync.cpp
diff options
context:
space:
mode:
authorMarcoFalke <[email protected]>2019-06-13 09:43:24 -0400
committerMarcoFalke <[email protected]>2019-06-13 11:46:38 -0400
commitfa8f195195945ce6258199af0461e3fbfbc1236d (patch)
tree04586bb1d5ee6b4aa00fc13a89baf7d5a22132c3 /src/sync.cpp
parentscripted-diff: Replace fprintf with tfm::format (diff)
downloaddiscoin-fa8f195195945ce6258199af0461e3fbfbc1236d.tar.xz
discoin-fa8f195195945ce6258199af0461e3fbfbc1236d.zip
Replace remaining fprintf with tfm::format manually
Diffstat (limited to 'src/sync.cpp')
-rw-r--r--src/sync.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sync.cpp b/src/sync.cpp
index 8dfbbf08b..20258d8e9 100644
--- a/src/sync.cpp
+++ b/src/sync.cpp
@@ -57,7 +57,7 @@ struct CLockLocation {
std::string ToString() const
{
- return tfm::format(
+ return strprintf(
"%s %s:%s%s (in thread %s)",
mutexName, sourceFile, itostr(sourceLine), (fTry ? " (TRY)" : ""), m_thread_name);
}