From 99dfd14919f55742cbd311bd6032ce0f1dc361c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bert=20M=C3=BCnnich?= Date: Fri, 13 Dec 2013 13:04:45 +0100 Subject: Fixed Imlib file handle type, issue #117 --- thumbs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'thumbs.c') diff --git a/thumbs.c b/thumbs.c index a1ee779..2090102 100644 --- a/thumbs.c +++ b/thumbs.c @@ -62,11 +62,11 @@ char* tns_cache_filepath(const char *filepath) return cfile; } -Imlib_Image* tns_cache_load(const char *filepath) +Imlib_Image tns_cache_load(const char *filepath) { char *cfile; struct stat cstats, fstats; - Imlib_Image *im = NULL; + Imlib_Image im = NULL; if (filepath == NULL) return NULL; @@ -223,7 +223,7 @@ bool tns_load(tns_t *tns, int n, const fileinfo_t *file, bool use_cache, cache_hit = false; float z, zw, zh; thumb_t *t; - Imlib_Image *im; + Imlib_Image im; const char *fmt; if (tns == NULL || tns->thumbs == NULL) -- cgit v1.2.3