summaryrefslogtreecommitdiff
path: root/expat/xmlwf/filemap.h
diff options
context:
space:
mode:
Diffstat (limited to 'expat/xmlwf/filemap.h')
-rw-r--r--expat/xmlwf/filemap.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/expat/xmlwf/filemap.h b/expat/xmlwf/filemap.h
index 5487a4ebe..ef6611442 100644
--- a/expat/xmlwf/filemap.h
+++ b/expat/xmlwf/filemap.h
@@ -30,10 +30,9 @@
USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-#include <limits.h> /* INT_MAX */
+#include <limits.h> /* INT_MAX */
#include <stddef.h>
-
/* The following limit (for XML_Parse's int len) derives from
* this loop in xmparse.c:
*
@@ -41,17 +40,14 @@
* bufferSize = (int) (2U * (unsigned) bufferSize);
* } while (bufferSize < neededSize && bufferSize > 0);
*/
-#define XML_MAX_CHUNK_LEN (INT_MAX / 2 + 1)
-
+#define XML_MAX_CHUNK_LEN (INT_MAX / 2 + 1)
#ifdef XML_UNICODE
int filemap(const wchar_t *name,
- void (*processor)(const void *, size_t,
- const wchar_t *, void *arg),
+ void (*processor)(const void *, size_t, const wchar_t *, void *arg),
void *arg);
#else
int filemap(const char *name,
- void (*processor)(const void *, size_t,
- const char *, void *arg),
+ void (*processor)(const void *, size_t, const char *, void *arg),
void *arg);
#endif