We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28dc278 commit 29e3c3cCopy full SHA for 29e3c3c
1 file changed
Network/Socket/Internal.hs
@@ -93,11 +93,11 @@ annotateIOException io anno = modifyIOError f io
93
Just n -> "[" ++ showErrno n ++ "] "
94
95
showErrno :: CInt -> String
96
-showErrno n = case lookup (Errno n) errnoNames of
+showErrno n = case lookup (C.Errno n) errnoNames of
97
Nothing -> show n
98
Just name -> name
99
100
-errnoNames :: [(Errno, String)]
+errnoNames :: [(C.Errno, String)]
101
errnoNames = [
102
(C.eACCES, "EACCES")
103
, (C.eADDRINUSE, "EADDRINUSE")
0 commit comments