Commit e3a296df authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'cb0244da'

* commit 'cb0244da':
  bktr: Changed a missed occurrance of open into avpriv_open
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 09f1afc7 cb0244da
......@@ -140,7 +140,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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment