diff options
author | Kalle Wallin <kaw@linux.se> | 2004-07-03 16:48:56 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-07-03 16:48:56 +0000 |
commit | 41f97e2fed32496da010db6a1e472617d7ad11c1 (patch) | |
tree | b9d6fed401fc1f18bdfe04403bd34e82994d4e88 /src/support.h | |
parent | 0f0719248b95bdc26b4c18b0b967140d82871a1a (diff) | |
download | mpd-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.h | 2 |
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; |