aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
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
parent82b2c83149a46f226cdec1ac76d35679609d0a0d (diff)
strict aliasing warnings fix : replace (void**) by (void*)
svn path=/trunk/; revision=21274
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mate/mate_runtime.c2
-rw-r--r--plugins/mate/mate_util.c4
2 files changed, 3 insertions, 3 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);
diff --git a/plugins/mate/mate_util.c b/plugins/mate/mate_util.c
index 1c66cea3df..b6c9984083 100644
--- a/plugins/mate/mate_util.c
+++ b/plugins/mate/mate_util.c
@@ -139,7 +139,7 @@ gchar* scs_subscribe(SCS_collection* c, const gchar* s) {
size_t len = 0;
GMemChunk* chunk = NULL;
- g_hash_table_lookup_extended(c->hash,(gconstpointer)s,(gpointer*)&orig,(gpointer*)&ip);
+ g_hash_table_lookup_extended(c->hash,(gconstpointer)s,(gpointer)&orig,(gpointer)&ip);
if (ip) {
(*ip)++;
@@ -190,7 +190,7 @@ void scs_unsubscribe(SCS_collection* c, gchar* s) {
size_t len = 0xffff;
GMemChunk* chunk = NULL;
- g_hash_table_lookup_extended(c->hash,(gconstpointer)s,(gpointer*)&orig,(gpointer*)&ip);
+ g_hash_table_lookup_extended(c->hash,(gconstpointer)s,(gpointer)&orig,(gpointer)&ip);
if (ip) {
if (*ip == 0) {