aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2014-12-22 20:45:56 +0000
committerFrancis Rowe <info@gluglug.org.uk>2014-12-22 20:45:56 +0000
commita2c90a09d848586d61a3307435d7250de7063ac2 (patch)
tree0f21cd6314aa72dd37c37be49518194d383516b9
parent982d724f3fc21c78e33f65e2fe3d2cce6482a4f9 (diff)
downloadlibrebootfr-a2c90a09d848586d61a3307435d7250de7063ac2.tar.gz
librebootfr-a2c90a09d848586d61a3307435d7250de7063ac2.zip
ich9deblob: move int romSize variable init to top of main
-rw-r--r--resources/utilities/ich9deblob/ich9deblob.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/resources/utilities/ich9deblob/ich9deblob.c b/resources/utilities/ich9deblob/ich9deblob.c
index ad4960cb..9d60178a 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);