[Mplayer-cvslog] CVS: main asxparser.c,1.11,1.12 m_option.c,1.13,1.14 mplayer.c,1.704,1.705 parser-mpcmd.c,1.9,1.10playtreeparser.c,1.21,1.22
Diego Biurrun CVS
diego at mplayerhq.hu
Wed Jul 9 03:30:53 CEST 2003
Update of /cvsroot/mplayer/main
In directory mail:/var/tmp.root/cvs-serv16357
Modified Files:
asxparser.c m_option.c mplayer.c parser-mpcmd.c
playtreeparser.c
Log Message:
output typo fixes: unknow --> unknown
Index: asxparser.c
===================================================================
RCS file: /cvsroot/mplayer/main/asxparser.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- asxparser.c 30 Mar 2003 17:02:05 -0000 1.11
+++ asxparser.c 9 Jul 2003 01:29:44 -0000 1.12
@@ -470,7 +470,7 @@
}
val = asx_get_attrib("VALUE",attribs);
if(m_config_get_option(mconfig,name) == NULL) {
- mp_msg(MSGT_PLAYTREE,MSGL_WARN,"Found unknow param in asx: %s",name);
+ mp_msg(MSGT_PLAYTREE,MSGL_WARN,"Found unknown param in asx: %s",name);
if(val)
mp_msg(MSGT_PLAYTREE,MSGL_WARN,"=%s\n",val);
else
Index: m_option.c
===================================================================
RCS file: /cvsroot/mplayer/main/m_option.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- m_option.c 1 Jul 2003 09:26:49 -0000 1.13
+++ m_option.c 9 Jul 2003 01:29:44 -0000 1.14
@@ -872,7 +872,7 @@
if(!strcmp(subopts[i].name,subopt)) break;
}
if(!subopts[i].name) {
- mp_msg(MSGT_CFGPARSER, MSGL_ERR, "Option %s: Unknow suboption %s\n",name,subopt);
+ mp_msg(MSGT_CFGPARSER, MSGL_ERR, "Option %s: Unknown suboption %s\n",name,subopt);
return M_OPT_UNKNOW;
}
r = m_option_parse(&subopts[i],subopt,
Index: mplayer.c
===================================================================
RCS file: /cvsroot/mplayer/main/mplayer.c,v
retrieving revision 1.704
retrieving revision 1.705
diff -u -r1.704 -r1.705
--- mplayer.c 27 Jun 2003 10:16:14 -0000 1.704
+++ mplayer.c 9 Jul 2003 01:29:45 -0000 1.705
@@ -3149,7 +3149,7 @@
if ( ( use_gui )&&( cmd->id > MP_CMD_GUI_EVENTS ) ) guiGetEvent( guiIEvent,(char *)cmd->id );
else
#endif
- mp_msg(MSGT_CPLAYER, MSGL_V, "Received unknow cmd %s\n",cmd->name);
+ mp_msg(MSGT_CPLAYER, MSGL_V, "Received unknown cmd %s\n",cmd->name);
}
}
mp_cmd_free(cmd);
Index: parser-mpcmd.c
===================================================================
RCS file: /cvsroot/mplayer/main/parser-mpcmd.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- parser-mpcmd.c 2 Apr 2003 16:13:16 -0000 1.9
+++ parser-mpcmd.c 9 Jul 2003 01:29:45 -0000 1.10
@@ -181,7 +181,7 @@
}
} else {
tmp = M_OPT_UNKNOW;
- mp_msg(MSGT_CFGPARSER, MSGL_ERR, "Unknow option on the command line: %s\n",opt);
+ mp_msg(MSGT_CFGPARSER, MSGL_ERR, "Unknown option on the command line: %s\n",opt);
}
}
}
Index: playtreeparser.c
===================================================================
RCS file: /cvsroot/mplayer/main/playtreeparser.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- playtreeparser.c 2 Apr 2003 15:32:12 -0000 1.21
+++ playtreeparser.c 9 Jul 2003 01:29:45 -0000 1.22
@@ -297,7 +297,7 @@
else
entries[num-1].length = strdup(v);
} else
- mp_msg(MSGT_PLAYTREE,MSGL_WARN,"Unknow entry type %s\n",line);
+ mp_msg(MSGT_PLAYTREE,MSGL_WARN,"Unknown entry type %s\n",line);
line = play_tree_parser_get_line(p);
}
More information about the MPlayer-cvslog
mailing list