aboutsummaryrefslogtreecommitdiffstats
path: root/src/support.h
diff options
context:
space:
mode:
authorKalle Wallin <kaw@linux.se>2004-07-03 16:48:56 +0000
committerKalle Wallin <kaw@linux.se>2004-07-03 16:48:56 +0000
commit41f97e2fed32496da010db6a1e472617d7ad11c1 (patch)
treeb9d6fed401fc1f18bdfe04403bd34e82994d4e88 /src/support.h
parent0f0719248b95bdc26b4c18b0b967140d82871a1a (diff)
downloadmpd-41f97e2fed32496da010db6a1e472617d7ad11c1.tar.gz
mpd-41f97e2fed32496da010db6a1e472617d7ad11c1.tar.xz
mpd-41f97e2fed32496da010db6a1e472617d7ad11c1.zip
Replaced the time_t type with glibs GTime
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1785 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/support.h')
-rw-r--r--src/support.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/support.h b/src/support.h
index 4182d2e74..0a72e39b0 100644
--- a/src/support.h
+++ b/src/support.h
@@ -18,7 +18,7 @@ char *strcasestr(const char *haystack, const char *needle);
typedef struct
{
int offset;
- time_t t;
+ GTime t; /* GTime is equivalent to time_t */
} scroll_state_t;