diff options
| author | jcsjcs <jcsjcs@f01d2545-417e-4e96-918e-98f8d0dbbcb6> | 2007-05-07 12:06:46 +0000 |
|---|---|---|
| committer | jcsjcs <jcsjcs@f01d2545-417e-4e96-918e-98f8d0dbbcb6> | 2007-05-07 12:06:46 +0000 |
| commit | 50adde27e5c8a417d001aeb9abb97d0e3221d18b (patch) | |
| tree | 4b2f5aac8d4499b57259019b23b202b3ab25a3f0 /src | |
| parent | 064fa5b8ccb6c7c3c7738244bf48181b0e3ef605 (diff) | |
| download | libgpod-50adde27e5c8a417d001aeb9abb97d0e3221d18b.tar.gz libgpod-50adde27e5c8a417d001aeb9abb97d0e3221d18b.tar.xz libgpod-50adde27e5c8a417d001aeb9abb97d0e3221d18b.zip | |
* src/itdb_itunesdb.c:
Fix for 64 bit systems: don't show "last played" data as played
in the last century... Thanks to Christophe.
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1428 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'src')
| -rw-r--r-- | src/itdb_itunesdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/itdb_itunesdb.c b/src/itdb_itunesdb.c index 6cdefa3..c7d7d91 100644 --- a/src/itdb_itunesdb.c +++ b/src/itdb_itunesdb.c @@ -937,7 +937,7 @@ static gboolean playcounts_read (FImport *fimp, FContents *cts) CHECK_ERROR (fimp, FALSE); for (i=0; i<entry_num; ++i) { - gint32 mac_time; + guint32 mac_time; struct playcount *playcount = g_new0 (struct playcount, 1); glong seek = header_length + i*entry_length; @@ -3470,7 +3470,7 @@ static void mk_mhlt (FExport *fexp, guint32 num) /* Write out the mhit header. Size will be written later */ static void mk_mhit (WContents *cts, Itdb_Track *track) { - gint32 mac_time; + guint32 mac_time; g_return_if_fail (cts); g_return_if_fail (track); |
