diff options
author | Max Kellermann <max@duempel.org> | 2008-09-15 12:27:26 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-15 12:27:26 +0200 |
commit | 6d3b7cdd62d798521d73ac58d57bd67061d64ba5 (patch) | |
tree | 196aff7bf983541fd2519ca40b92dbeb7acec8b3 /src/options.h | |
parent | 1cd28efa96dbc3d49a43d9b12c5b65d493baf949 (diff) | |
download | mpd-6d3b7cdd62d798521d73ac58d57bd67061d64ba5.tar.gz mpd-6d3b7cdd62d798521d73ac58d57bd67061d64ba5.tar.xz mpd-6d3b7cdd62d798521d73ac58d57bd67061d64ba5.zip |
code style, indent with tabs
Follow the same code style als MPD itself. This patch only fixes
parts of the code which are going to be touched in the following bunch
of patches, i.e. there will be more "code style" patches in the
future.
Diffstat (limited to 'src/options.h')
-rw-r--r-- | src/options.h | 64 |
1 files changed, 31 insertions, 33 deletions
diff --git a/src/options.h b/src/options.h index 661d87440..e2b3b9b48 100644 --- a/src/options.h +++ b/src/options.h @@ -2,39 +2,37 @@ #define MPD_HOST_ENV "MPD_HOST" #define MPD_PORT_ENV "MPD_PORT" -typedef struct -{ - char *host; - char *username; - char *password; - char *config_file; - char *key_file; - char *list_format; - char *status_format; - char *xterm_title_format; - char *scroll_sep; - char **screen_list; - char *timedisplay_type; - int port; - int crossfade_time; - int search_mode; - int hide_cursor; - int seek_time; - int lyrics_timeout; - gboolean reconnect; - gboolean debug; - gboolean find_wrap; - gboolean find_show_last_pattern; - gboolean list_wrap; - gboolean auto_center; - gboolean wide_cursor; - gboolean enable_colors; - gboolean audible_bell; - gboolean visible_bell; - gboolean enable_xterm_title; - gboolean enable_mouse; - gboolean scroll; - +typedef struct { + char *host; + char *username; + char *password; + char *config_file; + char *key_file; + char *list_format; + char *status_format; + char *xterm_title_format; + char *scroll_sep; + char **screen_list; + char *timedisplay_type; + int port; + int crossfade_time; + int search_mode; + int hide_cursor; + int seek_time; + int lyrics_timeout; + gboolean reconnect; + gboolean debug; + gboolean find_wrap; + gboolean find_show_last_pattern; + gboolean list_wrap; + gboolean auto_center; + gboolean wide_cursor; + gboolean enable_colors; + gboolean audible_bell; + gboolean visible_bell; + gboolean enable_xterm_title; + gboolean enable_mouse; + gboolean scroll; } options_t; extern options_t options; |