From: Rafaël Carré Date: Wed, 20 Jan 2010 10:32:58 +0000 (+0100) Subject: fb vout: use var_Inherit X-Git-Tag: 1.1.0-ff~1084 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=0f1b48765b67af731c0f8ddbf0edeb345e905452;p=vlc fb vout: use var_Inherit --- diff --git a/modules/video_output/fb.c b/modules/video_output/fb.c index c6879f3c11..e55e6168c7 100644 --- a/modules/video_output/fb.c +++ b/modules/video_output/fb.c @@ -519,7 +519,7 @@ static int OpenDisplay(vout_display_t *vd, bool force_resolution) char *psz_device; /* framebuffer device path */ /* Open framebuffer device */ - if (!(psz_device = config_GetPsz(vd, FB_DEV_VAR))) { + if (!(psz_device = var_InheritString(vd, FB_DEV_VAR))) { msg_Err(vd, "don't know which fb device to open"); return VLC_EGENERIC; }