diff options
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); |