diff options
| author | Alp Aker | 2016-05-22 14:14:19 -0400 |
|---|---|---|
| committer | Alp Aker | 2016-05-22 14:14:19 -0400 |
| commit | 848d487cd2aed4f26a53c6b65565bb03050614ce (patch) | |
| tree | d36915169acf2a9917fbad8fb87c0c1e5ec718f2 | |
| parent | 162bc021a1cb4d7f578d1635a55bb7c38084f044 (diff) | |
| download | emacs-848d487cd2aed4f26a53c6b65565bb03050614ce.tar.gz emacs-848d487cd2aed4f26a53c6b65565bb03050614ce.zip | |
* src/process.c (SOCK_NONBLOCK): Fix typo.
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index fbb517d91a7..d4bd19a24a9 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -151,7 +151,7 @@ bool inhibit_sentinels; | |||
| 151 | # define SOCK_CLOEXEC 0 | 151 | # define SOCK_CLOEXEC 0 |
| 152 | #endif | 152 | #endif |
| 153 | #ifndef SOCK_NONBLOCK | 153 | #ifndef SOCK_NONBLOCK |
| 154 | # define SOCK_NONBLOCk 0 | 154 | # define SOCK_NONBLOCK 0 |
| 155 | #endif | 155 | #endif |
| 156 | 156 | ||
| 157 | /* True if ERRNUM represents an error where the system call would | 157 | /* True if ERRNUM represents an error where the system call would |