From a532bc2b0e553943df23a698d7884fa164104ad3 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 24 Jul 2016 11:33:44 +0200 Subject: [PATCH] (PS3 Salamander) Silence unused variable warning --- libretro-common/file/file_path.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libretro-common/file/file_path.c b/libretro-common/file/file_path.c index 8584fa91fc..f5814d307a 100644 --- a/libretro-common/file/file_path.c +++ b/libretro-common/file/file_path.c @@ -678,7 +678,9 @@ void fill_short_pathname_representation(char* out_rep, const char *in_path, size_t size) { char path_short[PATH_MAX_LENGTH] = {0}; +#ifdef HAVE_COMPRESSION char *last_hash = NULL; +#endif fill_pathname(path_short, path_basename(in_path), "", sizeof(path_short));