Revert "[runtime] Fix potential overflow when using mono_msec_ticks"
[mono.git] / mono / io-layer / processes.c
index 913f0b8af4b43604a528192492512caff7fac786..0157e92f5be08fc6b56f0590393d9f0030d5917f 100644 (file)
@@ -2727,7 +2727,8 @@ process_wait (gpointer handle, guint32 timeout, gboolean alertable)
        WapiHandle_process *process_handle;
        pid_t pid G_GNUC_UNUSED, ret;
        int status;
-       gint64 start, now;
+       guint32 start;
+       guint32 now;
        struct MonoProcess *mp;
 
        /* FIXME: We can now easily wait on processes that aren't our own children,