[MPlayer-cvslog] r22219 - trunk/libmpdemux/demux_mov.c

reimar subversion at mplayerhq.hu
Wed Feb 14 20:17:39 CET 2007


Author: reimar
Date: Wed Feb 14 20:17:39 2007
New Revision: 22219

Modified:
   trunk/libmpdemux/demux_mov.c

Log:
English grammar fix: There is no 's' after "does not exist"


Modified: trunk/libmpdemux/demux_mov.c
==============================================================================
--- trunk/libmpdemux/demux_mov.c	(original)
+++ trunk/libmpdemux/demux_mov.c	Wed Feb 14 20:17:39 2007
@@ -1936,7 +1936,7 @@
 	if(sh){
 	    demuxer->audio->sh=sh; sh->ds=demuxer->audio;
 	} else {
-	    mp_msg(MSGT_DEMUX, MSGL_ERR, "MOV: selected audio stream (%d) does not exists\n",demuxer->audio->id);
+	    mp_msg(MSGT_DEMUX, MSGL_ERR, "MOV: selected audio stream (%d) does not exist\n",demuxer->audio->id);
 	    demuxer->audio->id=-2;
 	}
     }
@@ -1945,7 +1945,7 @@
 	if(sh){
 	    demuxer->video->sh=sh; sh->ds=demuxer->video;
 	} else {
-	    mp_msg(MSGT_DEMUX, MSGL_ERR, "MOV: selected video stream (%d) does not exists\n",demuxer->video->id);
+	    mp_msg(MSGT_DEMUX, MSGL_ERR, "MOV: selected video stream (%d) does not exist\n",demuxer->video->id);
 	    demuxer->video->id=-2;
 	}
     }
@@ -1954,7 +1954,7 @@
 	if(sh){
 	    demuxer->sub->sh=sh;
 	} else {
-	    mp_msg(MSGT_DEMUX, MSGL_ERR, "MOV: selected subtitle stream (%d) does not exists\n",demuxer->sub->id);
+	    mp_msg(MSGT_DEMUX, MSGL_ERR, "MOV: selected subtitle stream (%d) does not exist\n",demuxer->sub->id);
 	    demuxer->sub->id=-2;
 	}
     }



More information about the MPlayer-cvslog mailing list