From 5defaa9416f2e5bcdd78e032692289a3713acaee Mon Sep 17 00:00:00 2001 From: olsner Date: Fri, 9 Apr 2004 12:38:47 +0000 Subject: [PATCH] -EINPROGRESS => EINPROGRESS This was SVN commit r197. --- source/lib/sysdep/win/waio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/sysdep/win/waio.cpp b/source/lib/sysdep/win/waio.cpp index 11c00b2d64..5af4ac8b5c 100755 --- a/source/lib/sysdep/win/waio.cpp +++ b/source/lib/sysdep/win/waio.cpp @@ -542,7 +542,7 @@ int aio_error(const struct aiocb* cb) case 0: return 0; case STATUS_PENDING: - return -EINPROGRESS; + return EINPROGRESS; // TODO: errors default: