summaryrefslogtreecommitdiff
path: root/main/xmldoc.c
diff options
context:
space:
mode:
authorMatthew Jordan <mjordan@digium.com>2015-03-22 23:11:32 +0000
committerMatthew Jordan <mjordan@digium.com>2015-03-22 23:11:32 +0000
commit66670f02e6d662bee74e9a9cefc947da3bd1ed6f (patch)
tree7e617fcf556de9b3fe43352091c093e1b3197718 /main/xmldoc.c
parent7e097bce8687256ee400347245b7956c8e2fc452 (diff)
Fix compilation issues for OpenBSD
This patch addresses compilation issues for OpenBSD. Specifically, it addresses: * It allows including <sys/vmmeter.h> in asterisk.c * Provides a needed (size_t) cast in xmldoc.c In 13+, it also addresses a conditional inclusion in loader.c. Review: https://reviewboard.asterisk.org/r/4506 ASTERISK-24880 #close Reported by: snuffy Tested by: snuffy patches: misc-openbsd.diff uploaded by snuffy (License 5024) ........ Merged revisions 433245 from http://svn.asterisk.org/svn/asterisk/branches/11 ........ Merged revisions 433247 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@433248 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/xmldoc.c')
-rw-r--r--main/xmldoc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/xmldoc.c b/main/xmldoc.c
index e334e878e..2f4f063b9 100644
--- a/main/xmldoc.c
+++ b/main/xmldoc.c
@@ -2979,7 +2979,7 @@ int ast_xmldoc_load_documentation(void)
globret = glob(xmlpattern, MY_GLOB_FLAGS, NULL, &globbuf);
#endif
- ast_debug(3, "gl_pathc %zu\n", globbuf.gl_pathc);
+ ast_debug(3, "gl_pathc %zu\n", (size_t)globbuf.gl_pathc);
if (globret == GLOB_NOSPACE) {
ast_log(LOG_WARNING, "XML load failure, glob expansion of pattern '%s' failed: Not enough memory\n", xmlpattern);
ast_free(xmlpattern);