diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2016-05-04 05:49:34 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2016-05-04 05:49:34 +0000 |
commit | b8406b5c22560a241b3d01bf02bd0ef1dec54b11 (patch) | |
tree | c37a2a709ab4f0c8e2c63dea7287681a5f6c88eb /audio/umix/files/patch-src_error.c | |
parent | www/node010: deprecate, expires at 2016-10-01 (diff) |
audio/umix: fix the "ioctl sign-extension ioctl ffffffffc0044d00" warning
PR: 209227
Submitted by: trasz
Notes
Notes:
svn path=/head/; revision=414583
Diffstat (limited to 'audio/umix/files/patch-src_error.c')
-rw-r--r-- | audio/umix/files/patch-src_error.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/umix/files/patch-src_error.c b/audio/umix/files/patch-src_error.c new file mode 100644 index 000000000000..94f1dce52998 --- /dev/null +++ b/audio/umix/files/patch-src_error.c @@ -0,0 +1,11 @@ +--- src/error.c.orig 2016-05-03 08:56:24 UTC ++++ src/error.c +@@ -54,7 +54,7 @@ static void error_handler(int strflag, c + fflush(stderr); + } + +-int eioctl(int fd, int request, void *arg) ++int eioctl(int fd, unsigned long request, void *arg) + { + int n; + |