aboutsummaryrefslogtreecommitdiffstats
path: root/src/stats.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/stats.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/stats.c b/src/stats.c
index b114e1764..1daeb26e7 100644
--- a/src/stats.c
+++ b/src/stats.c
@@ -18,7 +18,6 @@
#include "stats.h"
-#include "tables.h"
#include "directory.h"
#include "myfprintf.h"
#include "player.h"
@@ -35,8 +34,8 @@ void initStats() {
}
int printStats(FILE * fp) {
- myfprintf(fp,"artists: %li\n",numberOfArtists());
- myfprintf(fp,"albums: %li\n",numberOfAlbums());
+ /*myfprintf(fp,"artists: %li\n",numberOfArtists());
+ myfprintf(fp,"albums: %li\n",numberOfAlbums());*/
myfprintf(fp,"songs: %i\n",stats.numberOfSongs);
myfprintf(fp,"uptime: %li\n",time(NULL)-stats.daemonStart);
myfprintf(fp,"playtime: %li\n",(long)(getPlayerTotalPlayTime()+0.5));