net/socket: Correct a typo in a macro definitions.

This commit is contained in:
Gregory Nutt 2017-08-18 07:51:16 -06:00
parent 485c7b3375
commit 962a9f8cf3
1 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@
#define _SS_ISNONBLOCK(s) (((s) & _SF_NONBLOCK) != 0)
#define _SS_ISLISTENING(s) (((s) & _SF_LISTENING) != 0)
#define _SS_ISBOUND(s) (((s) & _SF_CONNECTED) != 0)
#define _SS_ISBOUND(s) (((s) & _SF_BOUND) != 0)
#define _SS_ISCONNECTED(s) (((s) & _SF_CONNECTED) != 0)
#define _SS_ISCLOSED(s) (((s) & _SF_CLOSED) != 0)