From ffc9bccd84c7779dc486ade4bd93960288f211fd Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Thu, 29 Sep 2005 22:03:12 +0000 Subject: [PATCH] [BZ #1392] 2005-09-29 Roland McGrath [BZ #1392] * posix/sys/wait.h [!__GNUC__ || __cplusplus] (__WAIT_INT): Use const. --- posix/sys/wait.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posix/sys/wait.h b/posix/sys/wait.h index 31afa65703..d7a58eab13 100644 --- a/posix/sys/wait.h +++ b/posix/sys/wait.h @@ -47,7 +47,7 @@ __BEGIN_DECLS (__extension__ (((union { __typeof(status) __in; int __i; }) \ { .__in = (status) }).__i)) # else -# define __WAIT_INT(status) (*(int *) &(status)) +# define __WAIT_INT(status) (*(__const int *) &(status)) # endif /* This is the type of the argument to `wait'. The funky union -- 2.11.4.GIT