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

notifier: Use glib function

This commit is contained in:
Michael Vetter 2021-09-09 09:48:04 +02:00
parent 0a8d69dc46
commit 8c4ce7a939

View File

@ -77,10 +77,9 @@ notifier_uninit(void)
void
notify_typing(const char* const name)
{
char message[strlen(name) + 1 + 11];
sprintf(message, "%s: typing...", name);
gchar *message = g_strdup_printf("%s: typing...", name);
notify(message, 10000, "Incoming message");
g_free(message);
}
void