mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
Make some variables static.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4814 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
cad6fb2e19
commit
e32e6fea4b
@ -49,7 +49,7 @@
|
||||
|
||||
#ifdef HAVE_SYS_RESOURCE_H
|
||||
# include <sys/resource.h>
|
||||
struct rlimit orig_core_rlimit;
|
||||
static struct rlimit orig_core_rlimit;
|
||||
#endif
|
||||
|
||||
void chat_commands_init(void);
|
||||
|
@ -31,7 +31,7 @@
|
||||
|
||||
GSList *setupservers;
|
||||
|
||||
char *old_source_host;
|
||||
static char *old_source_host;
|
||||
int source_host_ok; /* Use source_host_ip .. */
|
||||
IPADDR *source_host_ip4, *source_host_ip6; /* Resolved address */
|
||||
|
||||
|
@ -33,9 +33,9 @@
|
||||
# include <langinfo.h>
|
||||
#endif
|
||||
|
||||
char *recode_fallback = NULL;
|
||||
char *recode_out_default = NULL;
|
||||
char *term_charset = NULL;
|
||||
static char *recode_fallback = NULL;
|
||||
static char *recode_out_default = NULL;
|
||||
static char *term_charset = NULL;
|
||||
|
||||
static const char *fe_recode_get_target (WI_ITEM_REC *witem)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user