summaryrefslogtreecommitdiff
path: root/lib/lock_holder.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lock_holder.h')
-rw-r--r--lib/lock_holder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lock_holder.h b/lib/lock_holder.h
index a7cf3436..d94b0fd6 100644
--- a/lib/lock_holder.h
+++ b/lib/lock_holder.h
@@ -45,7 +45,7 @@ public:
catch (const FileError& e)
{
bool dummy = false; //this warning shall not be shown but logged only
- procCallback.reportWarning(e.msg(), dummy); //may throw!
+ procCallback.reportWarning(e.toString(), dummy); //may throw!
}
}
bgstack15