From 6e9bd4a7744c10604115fc1e0351d2d904c801c7 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Sat, 8 Oct 2005 07:29:15 +0000 Subject: [PATCH] Changed '*p++' to 'p++' --- mxml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mxml.c b/mxml.c index fb48aed..0437db7 100755 --- a/mxml.c +++ b/mxml.c @@ -1118,7 +1118,7 @@ PMXML_NODE mxml_parse_buffer(char *buf, char *error, int error_size) end_element = FALSE; /* found new element */ - *p++; + p++; while (*p && isspace(*p)) { if (*p == '\n') line_number++;