From 9965f0272750469985e71a37c5696a35070d916e Mon Sep 17 00:00:00 2001 From: zephyrus Date: Wed, 7 Mar 2012 17:15:54 -0300 Subject: [PATCH] SF Patches Tracker id 3498437 - a header patch: ixml.h 1.6.15 Submitted: zephyrus ( zephyrus00jp ) - 2012-03-07 02:31:14 PST Details: a function is declared as EXPORT_SPEC IXML_Document *ixmlDocument_createDocument(); This should read as follows in order to suppress strict prototype checking by GCC. EXPORT_SPEC IXML_Document *ixmlDocument_createDocument(void); --- THANKS | 1 + ixml/inc/ixml.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/THANKS b/THANKS index 0169bc2..f30bf1c 100644 --- a/THANKS +++ b/THANKS @@ -64,4 +64,5 @@ exempt of errors. - Titus Winters - Tom (tomdev2) - Yoichi Nakayama (yoichi) +- zephyrus (zephyrus00jp) diff --git a/ixml/inc/ixml.h b/ixml/inc/ixml.h index 0099342..d58255d 100644 --- a/ixml/inc/ixml.h +++ b/ixml/inc/ixml.h @@ -738,7 +738,7 @@ EXPORT_SPEC int ixmlDocument_createDocumentEx( * \return A pointer to the new \b Document object with the nodeName set to * "#document" or \c NULL on failure. */ -EXPORT_SPEC IXML_Document *ixmlDocument_createDocument(); +EXPORT_SPEC IXML_Document *ixmlDocument_createDocument(void); /*!