From a2c90a09d848586d61a3307435d7250de7063ac2 Mon Sep 17 00:00:00 2001 From: Francis Rowe Date: Mon, 22 Dec 2014 15:45:56 -0500 Subject: ich9deblob: move int romSize variable init to top of main --- diff --git a/resources/utilities/ich9deblob/ich9deblob.c b/resources/utilities/ich9deblob/ich9deblob.c index ad4960c..9d60178 100644 --- a/resources/utilities/ich9deblob/ich9deblob.c +++ b/resources/utilities/ich9deblob/ich9deblob.c @@ -99,6 +99,9 @@ int main(int argc, char *argv[]) // Used when reading the factory.rom to extract descriptor/gbe regions unsigned int bufferLength; + // For storing the size of the factory.rom dump in bytes + int romSize; + // ----------------------------------------------------------------------------------------------- // Compatibility checks. This version of ich9deblob is not yet porable. @@ -173,7 +176,7 @@ int main(int argc, char *argv[]) // Get size of ROM image // This is needed for relocating the BIOS region (per descriptor) fseek(fp, 0L, SEEK_END); - int romSize = ftell(fp); + romSize = ftell(fp); printf("\nfactory.rom size: [%i] bytes\n", romSize); -- cgit v0.9.1