From 1edfd798d9f6b597f9d1292e5f348440d7ec50df Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 25 Jan 2016 00:57:08 +0100 Subject: [PATCH] read_7zip_file - move comment --- file_ops.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/file_ops.c b/file_ops.c index 3718b63389..33afe40444 100644 --- a/file_ops.c +++ b/file_ops.c @@ -118,9 +118,6 @@ static int read_7zip_file( return -1; } - RARCH_LOG_OUTPUT("Opened archive %s. Now trying to extract %s\n", - path, needle); - FileInStream_CreateVTable(&archiveStream); LookToRead_CreateVTable(&lookStream, False); lookStream.realStream = &archiveStream.s; @@ -169,6 +166,9 @@ static int read_7zip_file( if (string_is_equal(infile, needle)) { + RARCH_LOG_OUTPUT("Opened archive %s. Now trying to extract %s\n", + path, needle); + /* C LZMA SDK does not support chunked extraction - see here: * sourceforge.net/p/sevenzip/discussion/45798/thread/6fb59aaf/ * */