Fix use of wrong enumeration NULL value (#71400)

It produced a cast warning.
This commit is contained in:
Benjamin Dauvergne 2022-11-16 13:08:37 +01:00
parent 6389b2ca48
commit 0c4d3014a4
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ typedef struct _LassoSignatureContext {
xmlSecKey *signature_key;
} LassoSignatureContext;
#define LASSO_SIGNATURE_CONTEXT_NONE ((LassoSignatureContext){LASSO_SIGNATURE_TYPE_NONE, NULL})
#define LASSO_SIGNATURE_CONTEXT_NONE ((LassoSignatureContext){LASSO_SIGNATURE_METHOD_NONE, NULL})
#define lasso_assign_signature_context(to, from) \
do { \