X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faccess%2Ffile.c;h=01aa0e28a177ff2b2123070c07c1a0b3842d252b;hb=6ee1e193fd896ab9a4729fde14f009d9ce629815;hp=3288e2682e5bac4c204bef12050d07e44b200a8b;hpb=3305b049e7f587b23359a1c9047fb5763d19c1dc;p=vlc diff --git a/modules/access/file.c b/modules/access/file.c index 3288e2682e..01aa0e28a1 100644 --- a/modules/access/file.c +++ b/modules/access/file.c @@ -430,7 +430,7 @@ static int open_file (access_t *p_access, const char *psz_name) if ( !p_sys->fd ) { msg_Err( p_access, "cannot open file %s", psz_name ); - intf_UserFatal( p_access, VLC_FALSE, _("File reading failed"), + intf_UserFatal( p_access, VLC_FALSE, _("File reading failed"), _("VLC could not open file \"%s\"."), psz_name ); free (path); return VLC_EGENERIC; @@ -447,7 +447,7 @@ static int open_file (access_t *p_access, const char *psz_name) { msg_Err (p_access, "cannot open file %s (%s)", psz_name, strerror (errno)); - intf_UserFatal (p_access, VLC_FALSE, _("File reading failed"), + intf_UserFatal (p_access, VLC_FALSE, _("File reading failed"), _("VLC could not open file \"%s\" (%s)."), psz_name, strerror (errno)); return -1;