diff options
author | OBATA Akio <obache@wizdas.com> | 2020-01-31 18:29:23 +0900 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2020-01-31 12:50:50 +0000 |
commit | 08329d90148d57333b21ef5e83d49b8f5c8db3c0 (patch) | |
tree | feacb80d3470cb744269eb19fa56bfd04c466840 /artsc/artsdsp.c | |
parent | 482eea48c70a29b908053263176318f75b96a173 (diff) | |
download | arts-08329d90148d57333b21ef5e83d49b8f5c8db3c0.tar.gz arts-08329d90148d57333b21ef5e83d49b8f5c8db3c0.zip |
Drop `unsigned long int` case for the first argment type of ioctl(2)
It is identically same as `unsigned long`.
Signed-off-by: OBATA Akio <obache@wizdas.com>
Diffstat (limited to 'artsc/artsdsp.c')
-rw-r--r-- | artsc/artsdsp.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/artsc/artsdsp.c b/artsc/artsdsp.c index 2b6b3ef..0139a74 100644 --- a/artsc/artsdsp.c +++ b/artsc/artsdsp.c @@ -79,8 +79,6 @@ static int frags; typedef int ioctl_request_t; #elif defined(HAVE_IOCTL_INT_ULONG_DOTS) typedef unsigned long ioctl_request_t; -#elif defined(HAVE_IOCTL_INT_ULONGINT_DOTS) -typedef unsigned long int ioctl_request_t; #else #error "unknown ioctl type (check config.h, adapt configure test)..." #endif |