Samuel Thibault 61a3a8c6ce hurd: fix warning
timer_ptr2id and timer_id2ptr are used to convert between
application-visible timer_t and struct timer_node *. timer_ptr2id was made
to use void * instead of timer_t in 49b650430eb5 ('Update.') for no reason.
It happens that on Linux timer_t is void *, so both that change and this
commit are no-ops there, but not on systems where timer_t is not void *.

Using timer_ptr2id for filling sival_ptr also does not make sense since that
actually is a void *.

	* sysdeps/pthread/posix-timer.h (timer_ptr2id): Cast to timer_t
	instead of void *.
	* sysdeps/pthread/timer_create.c (timer_create): Do not use
	timer_ptr2id to cast struct timer_node * to void *.
2018-01-27 17:17:49 +01:00
..
2018-01-27 13:31:38 +01:00
2018-01-02 18:37:06 +00:00
2018-01-27 16:47:36 +01:00
2018-01-27 13:32:36 +01:00
2018-01-24 23:33:03 +00:00
2018-01-27 16:49:05 +01:00
2018-01-02 21:55:15 +00:00
2018-01-07 13:31:36 +01:00
2018-01-27 17:17:49 +01:00
2018-01-26 08:23:01 -08:00