mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 07:32:04 +02:00
Code Cleanup:
Use g_string_append_printf() instead of g_string_sprintfa() (which is considered deprecated.) git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5003 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
32e01a5a06
commit
c561ba35e6
30 changed files with 86 additions and 86 deletions
|
|
@ -206,7 +206,7 @@ static void event_connected(SERVER_REC *server)
|
|||
/* check that we haven't already joined this channel in
|
||||
same chat network connection.. */
|
||||
if (channel_find_servers(chatnet_servers, rec->name) == NULL)
|
||||
g_string_sprintfa(chans, "%s,", rec->name);
|
||||
g_string_append_printf(chans, "%s,", rec->name);
|
||||
}
|
||||
g_slist_free(chatnet_servers);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue