diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-12-22 11:34:58 +0000 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2014-12-22 11:34:58 +0000 |
commit | c987b4792097c5dbd2e629456d2ee1bf559d14a2 (patch) | |
tree | d2eca7688b28782d507469f64b9fd5dfda61ba26 /resources | |
parent | a843643341c7c3d772bdeb4d414509c30d34f50a (diff) | |
download | librebootfr-c987b4792097c5dbd2e629456d2ee1bf559d14a2.tar.gz librebootfr-c987b4792097c5dbd2e629456d2ee1bf559d14a2.zip |
ich9deblob (ich9gbe.c): fix build error
Diffstat (limited to 'resources')
-rw-r--r-- | resources/utilities/ich9deblob/ich9gbe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/utilities/ich9deblob/ich9gbe.c b/resources/utilities/ich9deblob/ich9gbe.c index 02908e01..1740dbd4 100644 --- a/resources/utilities/ich9deblob/ich9gbe.c +++ b/resources/utilities/ich9deblob/ich9gbe.c @@ -30,12 +30,12 @@ struct GBEREGIONRECORD_4K { unsigned char otherStuff[120]; // 0x3c words, or 0x7E bytes unsigned short checkSum; // when added to the sum of all words above, this should be 0xBABA unsigned char padding1[3968]; -} +}; // main and backup region in gbe struct GBEREGIONRECORD_8K { - GBEREGIONRECORD_4K main; - GBEREGIONRECORD_4K backup; + struct GBEREGIONRECORD_4K main; + struct GBEREGIONRECORD_4K backup; // Backup region: // This is actually "main" on X200, since the real main has a bad checksum // and other errors. You should do what you need on this one (if modifying |