summaryrefslogtreecommitdiff
path: root/src/xine-utils/xmllexer.c
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2003-12-06 18:11:53 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2003-12-06 18:11:53 +0000
commite984f917fbbc37874f55c6aff3239831cb43d1ec (patch)
tree79c7832e99ed11496e9b7a175bf810019213bc68 /src/xine-utils/xmllexer.c
parent1a94ed9db8e28082d9286df2d6c59c7dffb69c1e (diff)
downloadxine-lib-e984f917fbbc37874f55c6aff3239831cb43d1ec.tar.gz
xine-lib-e984f917fbbc37874f55c6aff3239831cb43d1ec.tar.bz2
reading through Daniel's huge patch was quite tiresome, but it was not worthless:
* fixing some lprintf's * fixing one printf -> xprintf * adding patch to diff_to_ffmpeg_cvs * small addition to xineutils.h (some gcc magic for future optimizations) CVS patchset: 5853 CVS date: 2003/12/06 18:11:53
Diffstat (limited to 'src/xine-utils/xmllexer.c')
-rw-r--r--src/xine-utils/xmllexer.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/xine-utils/xmllexer.c b/src/xine-utils/xmllexer.c
index f41dbbdc6..b72865e07 100644
--- a/src/xine-utils/xmllexer.c
+++ b/src/xine-utils/xmllexer.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xmllexer.c,v 1.5 2003/12/05 15:55:05 f1rmb Exp $
+ * $Id: xmllexer.c,v 1.6 2003/12/06 18:11:55 mroi Exp $
*
*/
@@ -347,7 +347,7 @@ int lexer_get_token(char * tok, int tok_size) {
}
break;
default:
- lprintf("xmllexer: expected char \'%c\'\n", tok[tok_pos - 1]); /* FIX ME */
+ lprintf("expected char \'%c\'\n", tok[tok_pos - 1]); /* FIX ME */
return T_ERROR;
}
} else {
@@ -368,7 +368,7 @@ int lexer_get_token(char * tok, int tok_size) {
/* pb */
if (tok_pos >= tok_size) {
- lprintf("xmllexer: token buffer is too little\n");
+ lprintf("token buffer is too little\n");
} else {
if (lexbuf_pos >= lexbuf_size) {
/* Terminate the current token */
@@ -398,15 +398,15 @@ int lexer_get_token(char * tok, int tok_size) {
return T_DATA;
break;
default:
- lprintf("xmllexer: unknown state, state=%d\n", state);
+ lprintf("unknown state, state=%d\n", state);
}
} else {
- lprintf("xmllexer: abnormal end of buffer, state=%d\n", state);
+ lprintf("abnormal end of buffer, state=%d\n", state);
}
}
return T_ERROR;
}
/* tok == null */
- lprintf("xmllexer: token buffer is null\n");
+ lprintf("token buffer is null\n");
return T_ERROR;
}