From 4b3d3e282a1c8a755bf5e02dd451158bdabbfcd8 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Thu, 14 Jul 2011 20:47:19 -0700 Subject: Quash a warning in nptl/allocatestack.c --- nptl/ChangeLog | 5 +++++ nptl/allocatestack.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'nptl') diff --git a/nptl/ChangeLog b/nptl/ChangeLog index c545b07..2acc676 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2011-07-14 Roland McGrath + + * allocatestack.c (__reclaim_stacks): Use uintptr_t cast rather than + UINTMAX_C. + 2011-06-30 Ulrich Drepper * nptl-init.c (__nptl_set_robust): New function. diff --git a/nptl/allocatestack.c b/nptl/allocatestack.c index 82408f5..9b8b0ce 100644 --- a/nptl/allocatestack.c +++ b/nptl/allocatestack.c @@ -824,7 +824,7 @@ __reclaim_stacks (void) if (in_flight_stack != 0) { bool add_p = in_flight_stack & 1; - list_t *elem = (list_t *) (in_flight_stack & ~UINTMAX_C (1)); + list_t *elem = (list_t *) (in_flight_stack & ~(uintptr_t) 1); if (add_p) { -- cgit v1.1