aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2019-07-01 15:52:41 +0200
committerAleksander Morgado <aleksander@aleksander.es>2019-07-11 23:21:00 +0200
commit13b4c9f6ac91baa89a37135cef40b04d2ad2ca1b (patch)
tree4fd69ea5c5a7866c518f62c889e68c0f836e0bfc /src
parentdf8918ff8c0668068eb1244921092d885439af6c (diff)
iface-modem-voice: minor logging update
Diffstat (limited to 'src')
-rw-r--r--src/mm-iface-modem-voice.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mm-iface-modem-voice.c b/src/mm-iface-modem-voice.c
index 4ca8b0d4..abaa64a5 100644
--- a/src/mm-iface-modem-voice.c
+++ b/src/mm-iface-modem-voice.c
@@ -1268,8 +1268,8 @@ setup_call_list_polling (MMCallList *call_list,
/*****************************************************************************/
static void
-update_message_list (MmGdbusModemVoice *skeleton,
- MMCallList *list)
+update_call_list (MmGdbusModemVoice *skeleton,
+ MMCallList *list)
{
gchar **paths;
@@ -1281,22 +1281,22 @@ update_message_list (MmGdbusModemVoice *skeleton,
}
static void
-call_added (MMCallList *list,
- const gchar *call_path,
- MmGdbusModemVoice *skeleton)
+call_added (MMCallList *list,
+ const gchar *call_path,
+ MmGdbusModemVoice *skeleton)
{
- mm_dbg ("Added CALL at '%s'", call_path);
- update_message_list (skeleton, list);
+ mm_dbg ("Added call at '%s'", call_path);
+ update_call_list (skeleton, list);
mm_gdbus_modem_voice_emit_call_added (skeleton, call_path);
}
static void
-call_deleted (MMCallList *list,
- const gchar *call_path,
- MmGdbusModemVoice *skeleton)
+call_deleted (MMCallList *list,
+ const gchar *call_path,
+ MmGdbusModemVoice *skeleton)
{
- mm_dbg ("Deleted CALL at '%s'", call_path);
- update_message_list (skeleton, list);
+ mm_dbg ("Deleted call at '%s'", call_path);
+ update_call_list (skeleton, list);
mm_gdbus_modem_voice_emit_call_deleted (skeleton, call_path);
}