about summary refs log tree commit diff stats
path: root/src/chat_log.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-10-14 17:58:58 +0100
committerJames Booth <boothj5@gmail.com>2012-10-14 17:58:58 +0100
commitda302d92c7685a56679c80b757e0adee8d092488 (patch)
treecdf7fcaadd813158575bbcb2ab5439103933b342 /src/chat_log.h
parentb2103b1c0fba54f6e65ce290505309836cbf543f (diff)
downloadprofani-tty-da302d92c7685a56679c80b757e0adee8d092488.tar.gz
Fixed compiler warning
Diffstat (limited to 'src/chat_log.h')
-rw-r--r--src/chat_log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chat_log.h b/src/chat_log.h
index d8455a26..7071da55 100644
--- a/src/chat_log.h
+++ b/src/chat_log.h
@@ -34,7 +34,7 @@ void chat_log_init(void);
 void chat_log_chat(const gchar * const login, gchar *other, 
     const gchar * const msg, chat_log_direction_t direction);
 void chat_log_close(void);
-GSList * chat_log_get_previous(const gchar * const login, gchar *recipient, 
-    GSList *history);
+GSList * chat_log_get_previous(const gchar * const login, 
+    const gchar * const recipient, GSList *history);
 
 #endif