summaryrefslogtreecommitdiff
path: root/otherlibs/unix/winwait.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/winwait.c')
-rw-r--r--otherlibs/unix/winwait.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/winwait.c b/otherlibs/unix/winwait.c
index 2d28117af4..69ac8dd668 100644
--- a/otherlibs/unix/winwait.c
+++ b/otherlibs/unix/winwait.c
@@ -36,7 +36,7 @@ static value alloc_process_status(HANDLE pid, int status)
enum { CAML_WNOHANG = 1, CAML_WUNTRACED = 2 };
-static int wait_flag_table[] = { CAML_WNOHANG, CAML_WUNTRACED };
+static const int wait_flag_table[] = { CAML_WNOHANG, CAML_WUNTRACED };
CAMLprim value caml_unix_waitpid(value vflags, value vpid_req)
{