diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-03-22 00:51:42 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-03-22 00:51:42 +0300 |
commit | acc7081113e66474c121e6272b9efb6ba24fb2b1 (patch) | |
tree | a2ab7c7da17e3e1811607cf74038c34abf8ca32a /load | |
parent | bed7ade3fa57ef3a7d4e8bd99c35aecb1f414bed (diff) |
Fix creating system_error to use generic_category for errno codes
Diffstat (limited to 'load')
-rw-r--r-- | load/load.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/load/load.cxx b/load/load.cxx index b9102d0..926f173 100644 --- a/load/load.cxx +++ b/load/load.cxx @@ -958,7 +958,7 @@ try if (signal (SIGPIPE, SIG_IGN) == SIG_ERR) { cerr << "error: unable to ignore broken pipe (SIGPIPE) signal: " - << system_error (errno, system_category ()) << endl; // Sanitize. + << system_error (errno, generic_category ()) << endl; // Sanitize. return 1; } |