[vlc-commits] eyetv: compilation fix
Felix Paul Kühne
git at videolan.org
Wed May 27 00:04:30 CEST 2015
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Wed May 27 00:03:13 2015 +0200| [f1de9cc469146ae200b45993f97af18f91e9cec7] | committer: Felix Paul Kühne
eyetv: compilation fix
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f1de9cc469146ae200b45993f97af18f91e9cec7
---
modules/access/eyetv.m | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/access/eyetv.m b/modules/access/eyetv.m
index 21b6f71..23e12f4 100644
--- a/modules/access/eyetv.m
+++ b/modules/access/eyetv.m
@@ -170,7 +170,7 @@ static int Open(vlc_object_t *p_this)
return VLC_EGENERIC;
}
- publicSock = vlc_socket(PF_UNIX, SOCK_STREAM, 0);
+ publicSock = vlc_socket(PF_UNIX, SOCK_STREAM, 0, false);
if (publicSock == -1) {
msg_Err(p_access, "create local socket failed (errno=%d)", errno);
free(p_sys);
More information about the vlc-commits
mailing list