Spelling police:

Something that we do not know about is unknowN.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10609 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2003-08-14 12:15:44 +00:00
parent df56e83ed9
commit a9bcc8342c
6 changed files with 10 additions and 10 deletions

View File

@ -197,8 +197,8 @@ int handle_client(client_t* cl,mp_net_stream_packet_t* pack) {
}
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;

View File

@ -777,7 +777,7 @@ int demux_ogg_open(demuxer_t* demuxer) {
//// 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);

View File

@ -72,7 +72,7 @@ static int open_f(stream_t *stream,int mode, void* opts, int* file_format) {
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;
}

View File

@ -166,7 +166,7 @@ static mp_net_stream_packet_t* send_net_stream_cmd(stream_t *s,uint16_t cmd,char
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;
}

View File

@ -114,7 +114,7 @@ int attrib_count,i;
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 );

View File

@ -1347,17 +1347,17 @@ static int parse_obj_settings_list(m_option_t* opt,char *name,
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;
}