Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
imagecache: fix compilation error (mono variable) when not enabled
  • Loading branch information
perexg committed Mar 11, 2016
1 parent e8d27ca commit 422608a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/imagecache.c
Expand Up @@ -642,7 +642,6 @@ imagecache_open ( uint32_t id )
imagecache_image_t skel, *i;
char *fn;
int fd = -1;
int64_t mono;

lock_assert(&global_lock);

Expand All @@ -662,6 +661,7 @@ imagecache_open ( uint32_t id )
#if ENABLE_IMAGECACHE
else if (imagecache_conf.enabled) {
int e;
int64_t mono;

/* Use existing */
if (i->updated) {
Expand Down

0 comments on commit 422608a

Please sign in to comment.