summaryrefslogtreecommitdiff
path: root/audio/umix/files/patch-src_error.h
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2016-05-04 05:49:34 +0000
committerKurt Jaeger <pi@FreeBSD.org>2016-05-04 05:49:34 +0000
commitb8406b5c22560a241b3d01bf02bd0ef1dec54b11 (patch)
treec37a2a709ab4f0c8e2c63dea7287681a5f6c88eb /audio/umix/files/patch-src_error.h
parentwww/node010: deprecate, expires at 2016-10-01 (diff)
audio/umix: fix the "ioctl sign-extension ioctl ffffffffc0044d00" warning
PR: 209227 Submitted by: trasz
Diffstat (limited to 'audio/umix/files/patch-src_error.h')
-rw-r--r--audio/umix/files/patch-src_error.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/umix/files/patch-src_error.h b/audio/umix/files/patch-src_error.h
new file mode 100644
index 000000000000..e2633ca475ec
--- /dev/null
+++ b/audio/umix/files/patch-src_error.h
@@ -0,0 +1,11 @@
+--- src/error.h.orig 2016-05-03 08:56:07 UTC
++++ src/error.h
+@@ -24,7 +24,7 @@
+ #ifndef MY_ERROR_H
+ #define MY_ERROR_H
+
+-int eioctl(int fd, int request, void *arg);
++int eioctl(int fd, unsigned long request, void *arg);
+ void *emalloc(size_t size);
+ void *erealloc(void *ptr, size_t size);
+ char *estrdup(const char *str);