]> git.saurik.com Git - redis.git/commitdiff
Merge pull request #606 from badboy/patch-1
authorSalvatore Sanfilippo <antirez@gmail.com>
Sat, 28 Jul 2012 09:51:56 +0000 (02:51 -0700)
committerSalvatore Sanfilippo <antirez@gmail.com>
Sat, 28 Jul 2012 09:51:56 +0000 (02:51 -0700)
Include sys/wait.h to avoid compiler warning

src/sentinel.c

index 227fb69386d1e61a6b221d8d40d187abfa32d714..a5ce31ee8ff56ef97bb4a2febc3f69a766c111fc 100644 (file)
@@ -36,6 +36,7 @@
 #include <ctype.h>
 #include <arpa/inet.h>
 #include <sys/socket.h>
+#include <sys/wait.h>
 
 extern char **environ;