Index: compat/win/sys/types.h |
diff --git a/compat/win/sys/types.h b/compat/win/sys/types.h |
index 6cd8ab3d56427633313bd4f4711ab8101fa28710..ba864f6f1ba06f5124b57d211aa95f9b3cc11e0f 100644 |
--- a/compat/win/sys/types.h |
+++ b/compat/win/sys/types.h |
@@ -22,10 +22,10 @@ |
#ifdef _WIN64 |
typedef int64_t ssize_t; |
-typedef uint64_t pid_t; |
+typedef unsigned int pid_t; |
Mark Mentovai
2015/05/05 22:41:35
This doesn’t depend on _WIN64 anymore.
scottmg
2015/05/05 23:23:52
Done.
|
#else |
typedef __w64 int ssize_t; |
-typedef __w64 unsigned int pid_t; |
+typedef unsigned int pid_t; |
#endif |