1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-23 06:25:24 +00:00

More win32 fixes.

svn path=/trunk/icecast/; revision=3033
This commit is contained in:
Jack Moffitt 2002-02-08 03:51:19 +00:00
parent 4327a10e45
commit 7927f1d31f
2 changed files with 5 additions and 2 deletions

View File

@ -87,8 +87,6 @@ int config_parse_file(const char *filename)
return CONFIG_EBADROOT;
}
xmlDocDump(stdout, doc);
_parse_root(doc, node->xmlChildrenNode);
xmlFreeDoc(doc);

View File

@ -114,6 +114,11 @@ void thread_initialize(void)
{
thread_t *thread;
/* this must be called to init pthreads-win32 */
#ifdef _WIN32
ptw32_processInitialize();
#endif
/* set up logging */
log_initialize();