changeset 34261:4a6b8c6e837a

Some spelling/grammar fixes.
author reimar
date Mon, 14 Nov 2011 19:09:35 +0000
parents 07a21268eb84
children aa8061d708b9
files libaf/af.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libaf/af.c	Mon Nov 14 19:05:49 2011 +0000
+++ b/libaf/af.c	Mon Nov 14 19:09:35 2011 +0000
@@ -319,7 +319,7 @@
 	}
 	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 @@
     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 @@
   // 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