about summary refs log tree commit diff stats
path: root/tests/log/mock_log.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/log/mock_log.c')
-rw-r--r--tests/log/mock_log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/log/mock_log.c b/tests/log/mock_log.c
index 4b9aeb14..d423b5bb 100644
--- a/tests/log/mock_log.c
+++ b/tests/log/mock_log.c
@@ -41,7 +41,7 @@ void log_msg(log_level_t level, const char * const area,
     const char * const msg) {}
 char * get_log_file_location(void)
 {
-    return (char *)mock();
+    return mock_ptr_type(char *);
 }
 
 log_level_t log_level_from_string(char *log_level)
@@ -56,7 +56,7 @@ void chat_log_close(void) {}
 GSList * chat_log_get_previous(const gchar * const login,
     const gchar * const recipient, GSList *history)
 {
-    return (GSList *)mock();
+    return mock_ptr_type(GSList *);
 }
 
 void groupchat_log_init(void) {}