summaryrefslogtreecommitdiff
path: root/src/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/log.h b/src/log.h
index b6baf6f..de6da92 100644
--- a/src/log.h
+++ b/src/log.h
@@ -60,8 +60,8 @@ std::ostream& operator<<(std::ostream& stream, LogGpgError const& value);
class LogErrno
{
public:
- LogErrno(int e) : err_(e) {};
- int err_;
+ LogErrno(system_error_t e) : err_(e) {};
+ system_error_t err_;
};
std::ostream& operator<<(std::ostream& stream, LogErrno const& value);