From ae7d9563411691829f660617fc3b51f4edef225c Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Mon, 23 Sep 2019 01:44:53 +0200 Subject: [PATCH] Silence warning --- libretro-common/file/file_path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/file/file_path.c b/libretro-common/file/file_path.c index c731cbca89..65b8f5b944 100644 --- a/libretro-common/file/file_path.c +++ b/libretro-common/file/file_path.c @@ -893,7 +893,7 @@ end: size_t path_relative_to(char *out, const char *path, const char *base, size_t size) { - size_t i, written = 0; + size_t i; const char *trimmed_path, *trimmed_base; #ifdef _WIN32