Merge pull request #213 from elliptica/master

Fix typo
master
Diego Nehab 2017-05-15 15:29:49 -03:00 committed by GitHub
commit 5a17f79b03
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ int socket_waitfd(p_socket ps, int sw, p_timeout tm) {
* Initializes module
\*-------------------------------------------------------------------------*/
int socket_open(void) {
/* instals a handler to ignore sigpipe or it will crash us */
/* installs a handler to ignore sigpipe or it will crash us */
signal(SIGPIPE, SIG_IGN);
return 1;
}