[MPlayer-cvslog] r34349 - trunk/libaf/af.c

reimar subversion at mplayerhq.hu
Mon Nov 14 20:09:35 CET 2011


Author: reimar
Date: Mon Nov 14 20:09:35 2011
New Revision: 34349

Log:
Some spelling/grammar fixes.

Modified:
   trunk/libaf/af.c

Modified: trunk/libaf/af.c
==============================================================================
--- trunk/libaf/af.c	Mon Nov 14 20:05:49 2011	(r34348)
+++ trunk/libaf/af.c	Mon Nov 14 20:09:35 2011	(r34349)
@@ -319,7 +319,7 @@ int af_reinit(af_stream_t* s, af_instanc
 	}
 	if(!new){ // Should _never_ happen
 	  mp_msg(MSGT_AFILTER, MSGL_ERR, "[libaf] Unable to correct audio format. "
-		 "This error should never uccur, please send bugreport.\n");
+		 "This error should never occur, please send a bug report.\n");
 	  return AF_ERROR;
 	}
 	af=new->next;
@@ -532,7 +532,7 @@ int af_init(af_stream_t* s)
     if (AF_OK != fixup_output_format(s)) {
       // Something is stuffed audio out will not work
       mp_msg(MSGT_AFILTER, MSGL_ERR, "[libaf] Unable to setup filter system can not"
-	     " meet sound-card demands, please send bugreport. \n");
+	     " meet sound-card demands, please send a bug report. \n");
       af_uninit(s);
       return -1;
     }
@@ -549,7 +549,7 @@ af_instance_t* af_add(af_stream_t* s, ch
   // Sanity check
   if(!s || !s->first || !name)
     return NULL;
-  // Insert the filter somwhere nice
+  // Insert the filter somewhere nice
   if(!strcmp(s->first->info->name,"format"))
     new = af_append(s, s->first, name);
   else


More information about the MPlayer-cvslog mailing list