changeset 10608:2cae82f2ab02

Spelling police: Something that we do not know about is unknowN.
author diego
date Thu, 14 Aug 2003 12:15:44 +0000
parents a17ebe817e33
children e6b63c53402e
files TOOLS/netstream/netstream.c libmpdemux/demux_ogg.c libmpdemux/stream_file.c libmpdemux/stream_netstream.c libvo/vo_xvmc.c m_option.c
diffstat 6 files changed, 10 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/TOOLS/netstream/netstream.c	Thu Aug 14 01:54:27 2003 +0000
+++ b/TOOLS/netstream/netstream.c	Thu Aug 14 12:15:44 2003 +0000
@@ -197,8 +197,8 @@
     }
     return net_stream_close(cl);
   default:
-    mp_msg(MSGT_NETST,MSGL_WARN,"Got unknow command %d\n",pack->cmd);
-    if(!write_error(cl->fd,"Unknow command\n"))
+    mp_msg(MSGT_NETST,MSGL_WARN,"Got unknown command %d\n",pack->cmd);
+    if(!write_error(cl->fd,"Unknown command\n"))
       return 0;
   }
   return 0;
--- a/libmpdemux/demux_ogg.c	Thu Aug 14 01:54:27 2003 +0000
+++ b/libmpdemux/demux_ogg.c	Thu Aug 14 12:15:44 2003 +0000
@@ -777,7 +777,7 @@
 	//// Unknown header type
       } else
 	mp_msg(MSGT_DEMUX,MSGL_ERR,"OGG stream %d has a header marker but is of an unknown type\n",ogg_d->num_sub);
-      /// Unknow (invalid ?) header
+      /// Unknown (invalid ?) header
     } else
       mp_msg(MSGT_DEMUX,MSGL_ERR,"OGG stream %d is of an unknown type\n",ogg_d->num_sub);
 
--- a/libmpdemux/stream_file.c	Thu Aug 14 01:54:27 2003 +0000
+++ b/libmpdemux/stream_file.c	Thu Aug 14 12:15:44 2003 +0000
@@ -72,7 +72,7 @@
   else if(mode == STREAM_WRITE)
     m = O_WRONLY;
   else {
-    mp_msg(MSGT_OPEN,MSGL_ERR, "[file] Unknow open mode %d\n",mode);
+    mp_msg(MSGT_OPEN,MSGL_ERR, "[file] Unknown open mode %d\n",mode);
     m_struct_free(&stream_opts,opts);
     return STREAM_UNSUPORTED;
   }
--- a/libmpdemux/stream_netstream.c	Thu Aug 14 01:54:27 2003 +0000
+++ b/libmpdemux/stream_netstream.c	Thu Aug 14 12:15:44 2003 +0000
@@ -166,7 +166,7 @@
     return NULL;
   }
   
-  mp_msg(MSGT_STREAM,MSGL_ERR, "Unknow response to %d: %d\n",pack->cmd);
+  mp_msg(MSGT_STREAM,MSGL_ERR, "Unknown response to %d: %d\n",pack->cmd);
   free(pack);
   return NULL;
 }
--- a/libvo/vo_xvmc.c	Thu Aug 14 01:54:27 2003 +0000
+++ b/libvo/vo_xvmc.c	Thu Aug 14 12:15:44 2003 +0000
@@ -114,7 +114,7 @@
 static void mDrawColorKey(uint32_t x,uint32_t  y, uint32_t w, uint32_t h)
 {
    if( (keycolor_handling != 2) && (keycolor_handling != 3) ) 
-      return ;//unknow method
+      return ;//unknown method
 
    XSetBackground( mDisplay,vo_gc,0 );
    XClearWindow( mDisplay,vo_window );
--- a/m_option.c	Thu Aug 14 01:54:27 2003 +0000
+++ b/m_option.c	Thu Aug 14 12:15:44 2003 +0000
@@ -1347,17 +1347,17 @@
       char prefix[len];
       strncpy(prefix,opt->name,len-1);
       prefix[len-1] = '\0';
-      mp_msg(MSGT_VFILTER,MSGL_ERR, "Option %s: unknow posfix %s\n"
-	     "Supported posfix are:\n"
+      mp_msg(MSGT_VFILTER,MSGL_ERR, "Option %s: unknown postfix %s\n"
+	     "Supported postfixes are:\n"
 	     "  %3$s-add\n"
 	     " Append the given list to the current list\n\n"
 	     "  %3$s-pre\n"
 	     " Prepend the given list to the current list\n\n"
 	     "  %3$s-del x,y,...\n"
 	     " Remove the given elements. Take the list element index (starting from 0).\n"
-	     " Neagtive index can be used (ie -1 is the last element)\n\n"
+	     " Negative index can be used (ie -1 is the last element)\n\n"
 	     "  %3$s-clr\n"
-	     " Clear the cureent list.\n",name,n,prefix);
+	     " Clear the current list.\n",name,n,prefix);
       
       return M_OPT_UNKNOWN;
     }