diff options
Diffstat (limited to 'gatchat/gatmux.c')
-rw-r--r-- | gatchat/gatmux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gatchat/gatmux.c b/gatchat/gatmux.c index 44d2ee8c..8187492b 100644 --- a/gatchat/gatmux.c +++ b/gatchat/gatmux.c @@ -642,13 +642,13 @@ gboolean g_at_mux_set_disconnect_function(GAtMux *mux, return TRUE; } -gboolean g_at_mux_set_debug(GAtMux *mux, GAtDebugFunc func, gpointer user) +gboolean g_at_mux_set_debug(GAtMux *mux, GAtDebugFunc func, gpointer user_data) { if (mux == NULL) return FALSE; mux->debugf = func; - mux->debug_data = user; + mux->debug_data = user_data; return TRUE; } |