summaryrefslogtreecommitdiffstats
path: root/win32
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-20 09:25:26 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-20 09:25:26 +0000
commit8af8d88b127db5a43f37d0192cc1b82a6d20c607 (patch)
tree9e69da3b29c85a718be1af9d35b2b2026a3622a4 /win32
parent83053745eb27b51eeba2600735794ac093bf7a5c (diff)
downloadruby-8af8d88b127db5a43f37d0192cc1b82a6d20c607.tar.gz
ruby-8af8d88b127db5a43f37d0192cc1b82a6d20c607.tar.xz
ruby-8af8d88b127db5a43f37d0192cc1b82a6d20c607.zip
* win32/win32.c (errmap): added ERROR_MOD_NOT_FOUND.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 54f612d38..19b122041 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -161,6 +161,7 @@ static struct {
{ ERROR_PIPE_NOT_CONNECTED, EPIPE },
{ ERROR_OPERATION_ABORTED, EINTR },
{ ERROR_NOT_ENOUGH_QUOTA, ENOMEM },
+ { ERROR_MOD_NOT_FOUND, ENOENT },
{ WSAENAMETOOLONG, ENAMETOOLONG },
{ WSAENOTEMPTY, ENOTEMPTY },
{ WSAEINTR, EINTR },