]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
Fix JUMP_SIZEOF
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sun, 29 Nov 2009 11:26:15 +0000 (12:26 +0100)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sun, 29 Nov 2009 11:26:15 +0000 (12:26 +0100)
lib/mips/relocator.c

index 40be263c7aed61320e978423a843bd72f70becb6..118ddbd6f431bb7a0960c763cc49347bd0f3ca0b 100644 (file)
@@ -36,7 +36,7 @@ extern grub_uint8_t grub_relocator32_backward_start;
 extern grub_uint8_t grub_relocator32_backward_end;
 
 #define REGW_SIZEOF (2 * sizeof (grub_uint32_t))
-#define JUMP_SIZEOF (sizeof (grub_uint32_t))
+#define JUMP_SIZEOF (2 * sizeof (grub_uint32_t))
 
 #define RELOCATOR_SRC_SIZEOF(x) (&grub_relocator32_##x##_end \
                                 - &grub_relocator32_##x##_start)