From c84ba308b55232c4903c17bed2573f0b558fd066 Mon Sep 17 00:00:00 2001 From: Vladimir 'phcoder' Serbinenko Date: Fri, 3 Feb 2012 14:20:31 +0100 Subject: [PATCH] * grub-core/kern/mm.c: Add missing include of i18n.h * grub-core/lib/relocator.c: Likewise. --- ChangeLog | 5 +++++ grub-core/kern/mm.c | 1 + grub-core/lib/relocator.c | 1 + 3 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index fee747912..c1b7ec5da 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-02-03 Vladimir Serbinenko + + * grub-core/kern/mm.c: Add missing include of i18n.h + * grub-core/lib/relocator.c: Likewise. + 2012-02-03 Vladimir Serbinenko * grub-core/loader/ia64/efi/linux.c (find_mmap_size): Replace fatal with diff --git a/grub-core/kern/mm.c b/grub-core/kern/mm.c index 80dd05e8e..95dd5ddf1 100644 --- a/grub-core/kern/mm.c +++ b/grub-core/kern/mm.c @@ -65,6 +65,7 @@ #include #include #include +#include #include #ifdef MM_DEBUG diff --git a/grub-core/lib/relocator.c b/grub-core/lib/relocator.c index 2d0117a81..663064655 100644 --- a/grub-core/lib/relocator.c +++ b/grub-core/lib/relocator.c @@ -23,6 +23,7 @@ #include #include #include +#include GRUB_MOD_LICENSE ("GPLv3+");