aboutsummaryrefslogtreecommitdiffstats
path: root/src/dbUtils.c
diff options
context:
space:
mode:
authorJ. Alexander Treuman <jat@spatialrift.net>2007-04-26 00:11:30 +0000
committerJ. Alexander Treuman <jat@spatialrift.net>2007-04-26 00:11:30 +0000
commitdc4e2a3f5e6f6452d0d2321dbc37eaac641c76c1 (patch)
tree9def26b12775f8f39c5fee37e7d73ee74e23f938 /src/dbUtils.c
parent7a8a9c10e1ea06b6ee2d79da83fa82cbddb5449f (diff)
downloadmpd-dc4e2a3f5e6f6452d0d2321dbc37eaac641c76c1.tar.gz
mpd-dc4e2a3f5e6f6452d0d2321dbc37eaac641c76c1.tar.xz
mpd-dc4e2a3f5e6f6452d0d2321dbc37eaac641c76c1.zip
Changing SearchStats.playTime from int to unsigned long.
git-svn-id: https://svn.musicpd.org/mpd/trunk@5951 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/dbUtils.c')
-rw-r--r--src/dbUtils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dbUtils.c b/src/dbUtils.c
index 756431650..b5b12270b 100644
--- a/src/dbUtils.c
+++ b/src/dbUtils.c
@@ -41,7 +41,7 @@ typedef struct _LocateTagItemArray {
typedef struct _SearchStats {
LocateTagItemArray locateArray;
int numberOfSongs;
- int playTime;
+ unsigned long playTime;
} SearchStats;
static int countSongsInDirectory(int fd, Directory * directory, void *data)