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:
@ -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)
|
||||
|
Reference in New Issue
Block a user