Corrected spelling of ERR_WOULDBLOCK (D was missing)

This commit is contained in:
goldsimon
2010-03-20 12:56:47 +00:00
parent 57594ad7b6
commit 0a49f2e068
3 changed files with 3 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ typedef s8_t err_t;
#define ERR_RTE -4 /* Routing problem. */
#define ERR_INPROGRESS -5 /* Operation in progress */
#define ERR_VAL -6 /* Illegal value. */
#define ERR_WOULBLOCK -7 /* Operation would block. */
#define ERR_WOULDBLOCK -7 /* Operation would block. */
#define ERR_IS_FATAL(e) ((e) < ERR_VAL)