From cb0244daaca83ab666798818f74f5181bf6bc387 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Fri, 9 Aug 2013 10:16:57 +0300 Subject: bktr: Changed a missed occurrance of open into avpriv_open MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Storsjö --- libavdevice/bktr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavdevice') diff --git a/libavdevice/bktr.c b/libavdevice/bktr.c index 725d90f579..06f4d860c2 100644 --- a/libavdevice/bktr.c +++ b/libavdevice/bktr.c @@ -141,7 +141,7 @@ static av_cold int bktr_init(const char *video_device, int width, int height, if (*tuner_fd < 0) av_log(NULL, AV_LOG_ERROR, "Warning. Tuner not opened, continuing: %s\n", strerror(errno)); - *video_fd = open(video_device, O_RDONLY); + *video_fd = avpriv_open(video_device, O_RDONLY); if (*video_fd < 0) { av_log(NULL, AV_LOG_ERROR, "%s: %s\n", video_device, strerror(errno)); return -1; -- cgit v1.2.1