summaryrefslogtreecommitdiff
path: root/FreeFileSync/Source/base/error_log.h
diff options
context:
space:
mode:
Diffstat (limited to 'FreeFileSync/Source/base/error_log.h')
-rwxr-xr-xFreeFileSync/Source/base/error_log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeFileSync/Source/base/error_log.h b/FreeFileSync/Source/base/error_log.h
index 022bf836..a27e423b 100755
--- a/FreeFileSync/Source/base/error_log.h
+++ b/FreeFileSync/Source/base/error_log.h
@@ -38,7 +38,7 @@ void logFatalError(const std::string& msg) //noexcept
{
saveBinContainer(getConfigDirPathPf() + Zstr("LastError.log"), logEntry, nullptr /*notifyUnbufferedIO*/); //throw FileError
}
- catch (const FileError&) {}
+ catch (FileError&) {}
}
}
bgstack15