diff options
author | Max Kellermann <max@duempel.org> | 2008-10-03 14:25:45 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-03 14:25:45 +0200 |
commit | 7e81521772240ec3567a1773d2919a3e90d104c7 (patch) | |
tree | 9f6346e662afe4617567a5904e28a832a87e7aef /src/conf.h | |
parent | 88af2c3ace0fa42dbb816cc9fe8c4b54ce89233a (diff) | |
download | mpd-7e81521772240ec3567a1773d2919a3e90d104c7.tar.gz mpd-7e81521772240ec3567a1773d2919a3e90d104c7.tar.xz mpd-7e81521772240ec3567a1773d2919a3e90d104c7.zip |
options: don't pass the "options" pointer around
Just make everybody use the global "options" variable. This
eliminates namespace confusion and the NO_GLOBAL_OPTIONS hack.
Diffstat (limited to '')
-rw-r--r-- | src/conf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf.h b/src/conf.h index 97e73b3d8..3203a2d43 100644 --- a/src/conf.h +++ b/src/conf.h @@ -4,5 +4,5 @@ int check_user_conf_dir(void); char *get_user_key_binding_filename(void); -int read_configuration(options_t *options); +int read_configuration(void); |