From e8e91cbd07caad62d61c0d6ca8226b0111bf3444 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Sat, 5 May 2012 22:52:15 +0200 Subject: [PATCH] [xml] fix wrong forward declaration --- lasso/xml/xml.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lasso/xml/xml.h b/lasso/xml/xml.h index 5b2ac4c8..34a1caa8 100644 --- a/lasso/xml/xml.h +++ b/lasso/xml/xml.h @@ -194,10 +194,10 @@ LASSO_EXPORT gchar* lasso_get_prefix_for_idwsf2_dst_service_href(const gchar *hr LASSO_EXPORT char* lasso_node_debug(LassoNode *node, int level); -typedef struct _LassoKey LassoKey; +struct _LassoKey; LASSO_EXPORT char* lasso_node_export_to_saml2_query(LassoNode *node, const char *param_name, const - char *url, LassoKey *key); + char *url, struct _LassoKey *key); #ifdef __cplusplus }