소스 검색

Removed debug output

master
Bert 14 년 전
부모
커밋
dd9e5dabb1
1개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  1. +1
    -4
      thumbs.c

+ 1
- 4
thumbs.c 파일 보기

@@ -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(&times[0], &fstats.st_atim);
TIMESPEC_TO_TIMEVAL(&times[1], &fstats.st_mtim);
utimes(cfile, times);
printf("thumbnail cache file written: %s\n", t->filename);
}
}
free(cfile);


불러오는 중...
취소
저장