Fix warning about int conversion

saml2_authn_context.c:77:3: warning: initialization of ‘unsigned int’ from ‘void *’
    makes integer from pointer without a cast [-Wint-conversion]
This commit is contained in:
Benjamin Dauvergne 2021-09-03 07:52:20 +02:00
parent 663c094ec7
commit d4ccf15902
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ static struct XmlSnippet schema_snippets[] = {
/* Other AuthenticatingAuthority are just ignored, it's a work-around to at least accept correct SAML message.
* See https://dev.entrouvert.org/issues/29340 */
{ "AuthenticatingAuthority", SNIPPET_LIST_CONTENT | SNIPPET_OPTIONAL,
NULL, NULL, NULL, NULL},
0, NULL, NULL, NULL},
{NULL, 0, 0, NULL, NULL, NULL}
};