]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* grub-core/lib/reed_solomon.c (scratch) [! STANDALONE]: Remove leftover
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Tue, 4 Jan 2011 14:35:10 +0000 (15:35 +0100)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Tue, 4 Jan 2011 14:35:10 +0000 (15:35 +0100)
variable.

ChangeLog
grub-core/lib/reed_solomon.c

index b4a308e9a8097c23f5007ec5d60e322eabaeeb06..d40ea54aa6b9e9c9ebaa8a7d1551fef81b117802 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-01-03  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * grub-core/lib/reed_solomon.c (scratch) [! STANDALONE]: Remove leftover
+       variable.
+
 2011-01-04  Colin Watson  <cjwatson@ubuntu.com>
 
        * grub-core/commands/legacycfg.c (GRUB_MOD_INIT): Fix typo in
index 9a40e2f98b26ec46a68fa2dad5ab9261017cfef1..740a069ee849876cc6f67f6b2680b1bf683160ab 100644 (file)
@@ -60,7 +60,9 @@ typedef grub_uint16_t gf_double_t;
 static char *gf_invert __attribute__ ((section(".text"))) = (void *) 0x100000;
 static char *scratch __attribute__ ((section(".text"))) = (void *) 0x100100;
 #else
+#if defined (STANDALONE)
 static char *scratch;
+#endif
 static grub_uint8_t gf_invert[256];
 #endif