diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2007-04-26 00:13:14 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2007-04-26 00:13:14 +0000 |
commit | 472e70e74e49292640ab66db8d3b76b8b2f555a1 (patch) | |
tree | 0a8709b17390cd6ab4103ac0358ef7f2cf0effd0 /src/dbUtils.c | |
parent | dc4e2a3f5e6f6452d0d2321dbc37eaac641c76c1 (diff) | |
download | mpd-472e70e74e49292640ab66db8d3b76b8b2f555a1.tar.gz mpd-472e70e74e49292640ab66db8d3b76b8b2f555a1.tar.xz mpd-472e70e74e49292640ab66db8d3b76b8b2f555a1.zip |
Forgot to change the associated fdprintf format to %li.
git-svn-id: https://svn.musicpd.org/mpd/trunk@5952 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/dbUtils.c')
-rw-r--r-- | src/dbUtils.c | 2 |
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) |