From 49a76c3a0d9d9797f59959703a325e10b102bd98 Mon Sep 17 00:00:00 2001 From: atmos4 Date: Thu, 21 Feb 2002 14:34:52 +0000 Subject: forgot to commit git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4787 b3059339-0415-0410-9bf9-f77b7e298cf2 --- vobsub.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vobsub.c') diff --git a/vobsub.c b/vobsub.c index 2005c1f325..fbdcd2344a 100644 --- a/vobsub.c +++ b/vobsub.c @@ -606,7 +606,7 @@ vobsub_open(const char *const name) strcat(buf, ".ifo"); fd = fopen(buf, "rb"); if (fd == NULL) - perror("Can't open IFO file"); + perror("VobSub: Can't open IFO file"); else { // parse IFO header unsigned char block[0x800]; @@ -661,7 +661,7 @@ vobsub_open(const char *const name) strcat(buf, ".idx"); fd = fopen(buf, "rb"); if (fd == NULL) - perror("Can't open IDX file"); + perror("VobSub: Can't open IDX file"); else { while (vobsub_parse_one_line(vob, fd) >= 0) /* NOOP */ ; @@ -673,7 +673,7 @@ vobsub_open(const char *const name) strcat(buf, ".sub"); mpg = mpeg_open(buf); if (mpg == NULL) - perror("Can't open SUB file"); + perror("VobSub: Can't open SUB file"); else { long last_pts_diff = 0; while (!mpeg_eof(mpg)) { -- cgit v1.2.3