aboutsummaryrefslogtreecommitdiffstats
path: root/xmlstub.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2002-08-28 21:04:11 +0000
committerJörg Mayer <jmayer@loplof.de>2002-08-28 21:04:11 +0000
commit7c4176d8688d6642026d3d322570663c9655c7db (patch)
treefb24347c14c65d6b8d7f7e93e4060abbb7217e0c /xmlstub.c
parent48be4e530d6635dbf1ef1dafa984c2060f3caa8a (diff)
Removed trailing whitespaces from .h and .c files using the
winapi_cleanup tool written by Patrik Stridvall for the wine project. svn path=/trunk/; revision=6117
Diffstat (limited to 'xmlstub.c')
-rw-r--r--xmlstub.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/xmlstub.c b/xmlstub.c
index ffa589cd2e..086ffc5fd9 100644
--- a/xmlstub.c
+++ b/xmlstub.c
@@ -3,7 +3,7 @@
* exists so that the library can be loaded on systems that
* have it.
*
- * $Id: xmlstub.c,v 1.1 2001/11/01 21:52:44 guy Exp $
+ * $Id: xmlstub.c,v 1.2 2002/08/28 21:00:41 jmayer Exp $
*
* Copyright (c) 2001 by David Frascone <dave@frascone.com>
*
@@ -51,7 +51,7 @@ loadLibXML()
if (XmlStubInitialized) {
/* Did you ever get the feeling you've been here before? */
- /*
+ /*
* This is not thread safe. With threads, we'd need to
* synchronize all this so two threads can't initialize at once.
*/
@@ -71,8 +71,8 @@ loadLibXML()
g_warning("XMLStub: Unable to open module " XML_LIBRARY);
return (-1);
}
-
- /*
+
+ /*
* Now that the library is open, copy all our relevant
* function pointers and integer pointers into our structure.
*/
@@ -81,13 +81,13 @@ loadLibXML()
error=TRUE;
}
XmlStub.xmlParseFile= (xmlDocPtr(*)(const char *))symbol;
-
+
if (!g_module_symbol(handle, "xmlStrcmp", &symbol)) {
g_warning("Unable to find \"xmlStrcmp\"");
error=TRUE;
}
XmlStub.xmlStrcmp= (int (*)(const xmlChar *, const xmlChar *))symbol;
-
+
if (!g_module_symbol(handle, "xmlCreatePushParserCtxt", &symbol)) {
g_warning("Unable to find \"xmlCreatePushParserCtxt\"");
error=TRUE;
@@ -152,7 +152,7 @@ loadLibXML()
/*
* Return if any of the above functions set our error flag.
- * A flag was used, instead of returning immediately, so
+ * A flag was used, instead of returning immediately, so
* that *all* unresolved symbols would be printed.
*/
if (error) {