* grub-core/gettext/gettext.c (main_context), (secondary_context):
Define after defining type and not before.
This commit is contained in:
parent
8b66bb5d8d
commit
f30c692c1f
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/gettext/gettext.c (main_context), (secondary_context):
|
||||||
|
Define after defining type and not before.
|
||||||
|
|
||||||
2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
|
2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/fs/zfs/zfscrypt.c (grub_ccm_decrypt): Return right error
|
* grub-core/fs/zfs/zfscrypt.c (grub_ccm_decrypt): Return right error
|
||||||
|
|
|
@ -34,8 +34,6 @@ GRUB_MOD_LICENSE ("GPLv3+");
|
||||||
http://www.gnu.org/software/autoconf/manual/gettext/MO-Files.html .
|
http://www.gnu.org/software/autoconf/manual/gettext/MO-Files.html .
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static struct grub_gettext_context main_context, secondary_context;
|
|
||||||
|
|
||||||
static const char *(*grub_gettext_original) (const char *s);
|
static const char *(*grub_gettext_original) (const char *s);
|
||||||
|
|
||||||
struct grub_gettext_msg
|
struct grub_gettext_msg
|
||||||
|
@ -69,6 +67,8 @@ struct grub_gettext_context
|
||||||
struct grub_gettext_msg *grub_gettext_msg_list;
|
struct grub_gettext_msg *grub_gettext_msg_list;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct grub_gettext_context main_context, secondary_context;
|
||||||
|
|
||||||
#define MO_MAGIC_NUMBER 0x950412de
|
#define MO_MAGIC_NUMBER 0x950412de
|
||||||
|
|
||||||
static grub_err_t
|
static grub_err_t
|
||||||
|
|
Loading…
Add table
Reference in a new issue