aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mate/mate_runtime.c
diff options
context:
space:
mode:
authorSebastien Tandel <sebastien@tandel.be>2007-03-29 22:58:02 +0000
committerSebastien Tandel <sebastien@tandel.be>2007-03-29 22:58:02 +0000
commit8405f21ea21bea4a09a5bda6547541be5b920008 (patch)
tree6470c3898c6e9395e95a61ecacae07cf67d2e822 /plugins/mate/mate_runtime.c
parent82b2c83149a46f226cdec1ac76d35679609d0a0d (diff)
strict aliasing warnings fix : replace (void**) by (void*)
svn path=/trunk/; revision=21274
Diffstat (limited to 'plugins/mate/mate_runtime.c')
-rw-r--r--plugins/mate/mate_runtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mate/mate_runtime.c b/plugins/mate/mate_runtime.c
index 99bea688de..87cb4ab071 100644
--- a/plugins/mate/mate_runtime.c
+++ b/plugins/mate/mate_runtime.c
@@ -494,7 +494,7 @@ static void analize_pdu(mate_pdu* pdu) {
if ((gopkey_match = new_avpl_exact_match("gop_key_match",pdu->avpl,cfg->key, TRUE))) {
gop_key = avpl_to_str(gopkey_match);
- g_hash_table_lookup_extended(cfg->gop_index,(gconstpointer)gop_key,(gpointer*)&orig_gop_key,(gpointer*)&gop);
+ g_hash_table_lookup_extended(cfg->gop_index,(gconstpointer)gop_key,(gpointer)&orig_gop_key,(gpointer)&gop);
if ( gop ) {
g_free(gop_key);