diff options
author | Bert <ber.t@gmx.com> | 2011-04-08 19:43:27 +0200 |
---|---|---|
committer | Bert <ber.t@gmx.com> | 2011-04-08 19:43:27 +0200 |
commit | dd9e5dabb155fb9bb06d5a8e5fd6717df1751762 (patch) | |
tree | 28a67c965dc0e59da80762a0349a2797071dc6df | |
parent | bb85d3dca6d6618c6e02c3fe6030029730d5c973 (diff) |
Removed debug output
-rw-r--r-- | thumbs.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -82,10 +82,8 @@ Imlib_Image* tns_cache_load(const char *filename) { cstats.st_mtim.tv_sec == fstats.st_mtim.tv_sec && cstats.st_mtim.tv_nsec == fstats.st_mtim.tv_nsec) { - printf("cache hit: %s\n", filename); im = imlib_load_image(cfile); - } else - printf("cache MISS: %s\n", filename); + } free(cfile); } @@ -127,7 +125,6 @@ void tns_cache_write(thumb_t *t, Bool force) { TIMESPEC_TO_TIMEVAL(×[0], &fstats.st_atim); TIMESPEC_TO_TIMEVAL(×[1], &fstats.st_mtim); utimes(cfile, times); - printf("thumbnail cache file written: %s\n", t->filename); } } free(cfile); |