mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
core/chatnets : Make object local to the object file
This object is not exposed via extern and therefore isn't accessible to other source files which makes it safe to assume that it should be local to this file.
This commit is contained in:
parent
0697e3eaf1
commit
14b83fdda6
1 changed files with 3 additions and 1 deletions
|
|
@ -30,7 +30,9 @@
|
|||
#include <irssi/src/core/chatnets.h>
|
||||
#include <irssi/src/core/servers.h>
|
||||
|
||||
GSList *chatnets, *chatnets_unavailable; /* list of available chat networks */
|
||||
/* list of available chat networks */
|
||||
GSList *chatnets;
|
||||
static GSList *chatnets_unavailable;
|
||||
|
||||
static void chatnet_config_save(CHATNET_REC *chatnet)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue