1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Fix a passel of signed vs unsigned char warnings.

This commit is contained in:
Tom Lane
2007-07-15 23:30:19 +00:00
parent cfd6c89b04
commit 4608f359a6
2 changed files with 10 additions and 10 deletions

View File

@ -102,7 +102,7 @@ xslt_process(PG_FUNCTION_ARGS)
stylesheet = xsltParseStylesheetDoc(ssdoc);
}
else
stylesheet = xsltParseStylesheetFile(GET_STR(ssheet));
stylesheet = xsltParseStylesheetFile((xmlChar *) GET_STR(ssheet));
if (stylesheet == NULL)