summaryrefslogtreecommitdiffstats
path: root/trace/record/client.h
diff options
context:
space:
mode:
Diffstat (limited to 'trace/record/client.h')
-rw-r--r--trace/record/client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/trace/record/client.h b/trace/record/client.h
index 274db20..a865a18 100644
--- a/trace/record/client.h
+++ b/trace/record/client.h
@@ -31,9 +31,9 @@
#include <rtems/recordclient.h>
#include <rtems/recorddata.h>
-#include <errno.h>
#include <sys/types.h>
+#include <cerrno>
#include <csignal>
#include <cstring>
#include <iostream>
@@ -43,7 +43,7 @@
class ErrnoException : public std::runtime_error {
public:
ErrnoException(std::string msg)
- : std::runtime_error(msg + ": " + strerror(errno)) {
+ : std::runtime_error(msg + ": " + std::strerror(errno)) {
// Nothing to do
}
};