about summary refs log tree commit diff stats
path: root/subx/020elf.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-06-28 17:25:41 -0700
committerKartik Agaram <vc@akkartik.com>2018-06-28 17:25:41 -0700
commitcd23c8b6fe2b7ce2f3771c0571b920404a4ce88e (patch)
tree0c530bbf05379f1901f2bc6748e4069163ffd3fb /subx/020elf.cc
parent414d9413c63da513f4b8449bab7f70d28bada4bf (diff)
downloadmu-cd23c8b6fe2b7ce2f3771c0571b920404a4ce88e.tar.gz
4287
Fix CI. Looks like 'std::' sometimes doesn't work.
Diffstat (limited to 'subx/020elf.cc')
-rw-r--r--subx/020elf.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/subx/020elf.cc b/subx/020elf.cc
index 75f8558e..40aa57df 100644
--- a/subx/020elf.cc
+++ b/subx/020elf.cc
@@ -101,7 +101,7 @@ struct perr {};
 :(code)
 ostream& operator<<(ostream& os, unused perr) {
   if (errno)
-    os << ": " << std::strerror(errno);
+    os << ": " << strerror(errno);
   return os;
 }