aboutsummaryrefslogtreecommitdiffstats
path: root/src/dbUtils.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/dbUtils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dbUtils.c b/src/dbUtils.c
index b5b12270b..654867601 100644
--- a/src/dbUtils.c
+++ b/src/dbUtils.c
@@ -129,7 +129,7 @@ int findSongsIn(int fd, char *name, int numItems, LocateTagItem * items)
static void printSearchStats(int fd, SearchStats *stats)
{
fdprintf(fd, "songs: %i\n", stats->numberOfSongs);
- fdprintf(fd, "playtime: %i\n", stats->playTime);
+ fdprintf(fd, "playtime: %li\n", stats->playTime);
}
static int searchStatsInDirectory(int fd, Song * song, void *data)