From: Carl Fredrik Hammar Date: Wed, 17 Feb 2010 19:04:30 +0000 (-0800) Subject: Use ioctl_handler_t typedef in Hurd ioctl macros. X-Git-Tag: upstream/2.30~13014 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0ea5278d33e7ad9b62c1d5d97cb287fdfcb8d977;p=external%2Fglibc.git Use ioctl_handler_t typedef in Hurd ioctl macros. --- diff --git a/ChangeLog b/ChangeLog index 1595a0a..5c5144b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-02-17 Carl Fredrik Hammar + + * hurd/hurd/ioctl.h (_HURD_HANDLE_IOCTLS_1): Cast to + `ioctl_handler_t'. + 2010-02-15 Ulrich Drepper * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Fix unwind info. diff --git a/hurd/hurd/ioctl.h b/hurd/hurd/ioctl.h index ee156f0..e5ab3dc 100644 --- a/hurd/hurd/ioctl.h +++ b/hurd/hurd/ioctl.h @@ -57,7 +57,7 @@ extern int hurd_register_ioctl_handler (int first_request, int last_request, static const struct ioctl_handler handler##_ioctl_handler##moniker \ __attribute__ ((__unused__)) = \ { _IOC_NOTYPE (first), _IOC_NOTYPE (last), \ - (int (*) (int, int, void *)) (handler), NULL }; \ + (ioctl_handler_t) (handler), NULL }; \ text_set_element (_hurd_ioctl_handler_lists, \ handler##_ioctl_handler##moniker) #define _HURD_HANDLE_IOCTLS(handler, first, last) \