diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-06-20 00:35:07 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-06-20 00:35:07 +0000 |
commit | 27cf4cc94874faf34c461e2f745a917d3c98b095 (patch) | |
tree | e199b95ef303e873c59d3d53993b27bc1dfadb2b /src/xine-utils/xmllexer.c | |
parent | 1edd2f2a81cbf1d5385f5a9f12bf8ff2c05c701d (diff) | |
download | xine-lib-27cf4cc94874faf34c461e2f745a917d3c98b095.tar.gz xine-lib-27cf4cc94874faf34c461e2f745a917d3c98b095.tar.bz2 |
Fix generic warnings.
CVS patchset: 8063
CVS date: 2006/06/20 00:35:07
Diffstat (limited to 'src/xine-utils/xmllexer.c')
-rw-r--r-- | src/xine-utils/xmllexer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-utils/xmllexer.c b/src/xine-utils/xmllexer.c index 91f5bf88d..cc112b64a 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.11 2006/02/14 02:25:00 dsalt Exp $ + * $Id: xmllexer.c,v 1.12 2006/06/20 00:35:08 dgp85 Exp $ * */ @@ -424,7 +424,7 @@ static struct { { '\'', 4, "apos" }, { '<', 2, "lt" }, { '>', 2, "gt" }, - { 0 } + { '\0', 0, "" } }; char *lexer_decode_entities (const char *tok) |