diff options
author | Emanuele Giaquinta <exg@irssi.org> | 2008-01-25 12:43:16 +0000 |
---|---|---|
committer | exg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2008-01-25 12:43:16 +0000 |
commit | 3e700f4b208d29b4412253a4f3705fe198d3dbe8 (patch) | |
tree | f05ed22e24171be4177503040740184a60bd2a38 /src/core | |
parent | bf6c3e72bbd966817d73f61f3016d0e82b2d6bad (diff) | |
download | irssi-3e700f4b208d29b4412253a4f3705fe198d3dbe8.zip |
Do not export iopt_tables pointer.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4690 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/args.c | 2 | ||||
-rw-r--r-- | src/core/args.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/core/args.c b/src/core/args.c index f7410911..99505875 100644 --- a/src/core/args.c +++ b/src/core/args.c @@ -21,7 +21,7 @@ #include "module.h" #include "args.h" -GArray *iopt_tables = NULL; +static GArray *iopt_tables = NULL; void args_register(struct poptOption *options) { diff --git a/src/core/args.h b/src/core/args.h index 4d1b82fb..90b2d547 100644 --- a/src/core/args.h +++ b/src/core/args.h @@ -7,8 +7,6 @@ # include "lib-popt/popt.h" #endif -extern GArray *iopt_tables; - void args_register(struct poptOption *options); void args_execute(int argc, char *argv[]); |