diff --git a/src/dunst.c b/src/dunst.c index 88031e8..337c2e2 100644 --- a/src/dunst.c +++ b/src/dunst.c @@ -101,7 +101,7 @@ static void teardown(void) { regex_teardown(); - teardown_queues(); + queues_teardown(); draw_deinit(); } diff --git a/src/queues.c b/src/queues.c index 9f292ff..8ee0243 100644 --- a/src/queues.c +++ b/src/queues.c @@ -518,7 +518,7 @@ bool queues_pause_status(void) } /** - * Helper function for teardown_queues() to free a single notification + * Helper function for queues_teardown() to free a single notification * * @param data The notification to free */ @@ -529,7 +529,7 @@ static void teardown_notification(gpointer data) } /* see queues.h */ -void teardown_queues(void) +void queues_teardown(void) { g_queue_free_full(history, teardown_notification); g_queue_free_full(displayed, teardown_notification); diff --git a/src/queues.h b/src/queues.h index d093582..f0feaed 100644 --- a/src/queues.h +++ b/src/queues.h @@ -181,7 +181,7 @@ bool queues_pause_status(void); * * @pre At least one time queues_init() called */ -void teardown_queues(void); +void queues_teardown(void); #endif /* vim: set tabstop=8 shiftwidth=8 expandtab textwidth=0: */