aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2013-09-24 12:49:32 +0000
committerLRN <lrn1986@gmail.com>2013-09-24 12:49:32 +0000
commit8b0dc86067605c468136266bcbd38d08105340c9 (patch)
tree35406e38702fa2bdda93ece7a1a385b30371d9a2
parent83817b75a311e9fb58794e784958dc4298f82fbb (diff)
downloadlibmicrohttpd-8b0dc86067605c468136266bcbd38d08105340c9.tar.gz
libmicrohttpd-8b0dc86067605c468136266bcbd38d08105340c9.zip
Fix a typo
-rw-r--r--src/include/plibc/plibc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/plibc/plibc.h b/src/include/plibc/plibc.h
index d40a31e5..ca293fde 100644
--- a/src/include/plibc/plibc.h
+++ b/src/include/plibc/plibc.h
@@ -364,7 +364,7 @@ enum
364/* Make sure it's the same as WSATIMEDOUT */ 364/* Make sure it's the same as WSATIMEDOUT */
365# define ETIMEDOUT 138 /* Connection timed out */ 365# define ETIMEDOUT 138 /* Connection timed out */
366#endif 366#endif
367#if !defined(EWOULDBLOCK) || EWOULBLOCK == 140 367#if !defined(EWOULDBLOCK) || EWOULDBLOCK == 140
368# undef EWOULDBLOCK /* MinGW-w64 defines it as 140, but we want it as EAGAIN */ 368# undef EWOULDBLOCK /* MinGW-w64 defines it as 140, but we want it as EAGAIN */
369# define EWOULDBLOCK EAGAIN /* Operation would block */ 369# define EWOULDBLOCK EAGAIN /* Operation would block */
370#endif 370#endif