aboutsummaryrefslogtreecommitdiffstats
path: root/xmlregexp.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2005-08-22 21:22:27 +0000
committerDaniel Veillard <veillard@src.gnome.org>2005-08-22 21:22:27 +0000
commit5eee767ca9b30a8e8c54808c82060ceb41630d6a (patch)
tree1546172190cdcc85d439bebe980cc1610432cd19 /xmlregexp.c
parent4f917e241656d7471bcf7b3185a110bf24df1647 (diff)
downloadandroid_external_libxml2-5eee767ca9b30a8e8c54808c82060ceb41630d6a.tar.gz
android_external_libxml2-5eee767ca9b30a8e8c54808c82060ceb41630d6a.tar.bz2
android_external_libxml2-5eee767ca9b30a8e8c54808c82060ceb41630d6a.zip
rescanned code and rebuilt small cleanup cleanup problems from code
* elfgcchack.h testapi.c doc/*: rescanned code and rebuilt * xmlregexp.c: small cleanup * include/libxml/schematron.h include/libxml/xmlexports.h include/libxml/xmlversion.h.in: cleanup problems from code scanner Daniel
Diffstat (limited to 'xmlregexp.c')
-rw-r--r--xmlregexp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlregexp.c b/xmlregexp.c
index ffd9efbc..3c975f03 100644
--- a/xmlregexp.c
+++ b/xmlregexp.c
@@ -7180,10 +7180,10 @@ xmlExpDumpInt(xmlBufferPtr buf, xmlExpNodePtr expr, int glob) {
* Serialize the expression as compiled to the buffer
*/
void
-xmlExpDump(xmlBufferPtr buf, xmlExpNodePtr exp) {
- if ((buf == NULL) || (exp == NULL))
+xmlExpDump(xmlBufferPtr buf, xmlExpNodePtr expr) {
+ if ((buf == NULL) || (expr == NULL))
return;
- xmlExpDumpInt(buf, exp, 0);
+ xmlExpDumpInt(buf, expr, 0);
}
/**