[PATCH] server/mailslot.c doesn't compile on certain systems. [Added ChangeLog]

Segin segin2005 at gmail.com
Thu Mar 23 21:48:08 CST 2006


I have noticed that including stdint.h to server/mailslot.c fixes it for
me.

Those on wine-patches and not wine-devel, please CC any replies.

ChangeLog:
Includes stdint.h in server/mailslot.c, added comment explaining why.
-------------- next part --------------
--- server/mailslot.c.orig	2006-03-23 22:37:32.000000000 -0500
+++ server/mailslot.c	2006-03-23 22:40:32.000000000 -0500
@@ -34,6 +34,8 @@
 #include <stdlib.h>
 #include <sys/time.h>
 #include <sys/types.h>
+/* include stdint.h cause of some systems breaking */
+#include <stdint.h>
 
 #ifdef HAVE_SYS_IOCTL_H
 #include <sys/ioctl.h>



More information about the wine-patches mailing list