Commit 7729f433 authored by Michael Niedermayer's avatar Michael Niedermayer

avdevice/fbdev_dec: use errno instead of ret for av_log

Should fix printing the wrong value
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 265c4771
...@@ -183,7 +183,7 @@ static int fbdev_read_packet(AVFormatContext *avctx, AVPacket *pkt) ...@@ -183,7 +183,7 @@ static int fbdev_read_packet(AVFormatContext *avctx, AVPacket *pkt)
/* refresh fbdev->varinfo, visible data position may change at each call */ /* refresh fbdev->varinfo, visible data position may change at each call */
if (ioctl(fbdev->fd, FBIOGET_VSCREENINFO, &fbdev->varinfo) < 0) { if (ioctl(fbdev->fd, FBIOGET_VSCREENINFO, &fbdev->varinfo) < 0) {
av_log(avctx, AV_LOG_WARNING, av_log(avctx, AV_LOG_WARNING,
"Error refreshing variable info: %s\n", av_err2str(ret)); "Error refreshing variable info: %s\n", av_err2str(AVERROR(errno)));
} }
pkt->pts = curtime; pkt->pts = curtime;
......
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