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/support.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/support.h')
-rw-r--r-- | src/support.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/support.h b/src/support.h index 8b4a28c18..089a6863a 100644 --- a/src/support.h +++ b/src/support.h @@ -15,11 +15,9 @@ char *remove_trailing_slash(char *path); char *lowerstr(char *str); char *strcasestr(const char *haystack, const char *needle); -typedef struct -{ - int offset; - GTime t; /* GTime is equivalent to time_t */ - +typedef struct { + int offset; + GTime t; /* GTime is equivalent to time_t */ } scroll_state_t; char *strscroll(char *str, char *separator, int width, scroll_state_t *st); |