Fixed compiler warning

This commit is contained in:
James Booth
2012-10-14 17:58:58 +01:00
parent b2103b1c0f
commit da302d92c7
2 changed files with 6 additions and 5 deletions

View File

@@ -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