1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

chatlog: remove unused variable

This commit is contained in:
Michael Vetter 2022-06-29 09:44:57 +02:00
parent dfc51f7ba4
commit 30faa6c367

View File

@ -57,7 +57,6 @@
static GHashTable* logs; static GHashTable* logs;
static GHashTable* groupchat_logs; static GHashTable* groupchat_logs;
static GDateTime* session_started;
struct dated_chat_log struct dated_chat_log
{ {
@ -77,7 +76,6 @@ static void _groupchat_log_chat(const gchar* const login, const gchar* const roo
void void
chat_log_init(void) chat_log_init(void)
{ {
session_started = g_date_time_new_now_local();
log_info("Initialising chat logs"); log_info("Initialising chat logs");
logs = g_hash_table_new_full(g_str_hash, (GEqualFunc)_key_equals, free, logs = g_hash_table_new_full(g_str_hash, (GEqualFunc)_key_equals, free,
(GDestroyNotify)_free_chat_log); (GDestroyNotify)_free_chat_log);
@ -422,7 +420,6 @@ chat_log_close(void)
{ {
g_hash_table_destroy(logs); g_hash_table_destroy(logs);
g_hash_table_destroy(groupchat_logs); g_hash_table_destroy(groupchat_logs);
g_date_time_unref(session_started);
} }
static char* static char*