* util/grub-mount.c: Extend GCC warning workaround to grub-mount.
This commit is contained in:
parent
7e7293d745
commit
ae80f31270
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2014-01-18 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* util/grub-mount.c: Extend GCC warning workaround to grub-mount.
|
||||||
|
|
||||||
2014-01-18 Vladimir Serbinenko <phcoder@gmail.com>
|
2014-01-18 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/kern/efi/efi.c: Ensure that the result starts with /
|
* grub-core/kern/efi/efi.c: Ensure that the result starts with /
|
||||||
|
|
|
@ -41,8 +41,13 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#pragma GCC diagnostic ignored "-Wmissing-prototypes"
|
||||||
|
#pragma GCC diagnostic ignored "-Wmissing-declarations"
|
||||||
|
#include <argp.h>
|
||||||
|
#pragma GCC diagnostic error "-Wmissing-prototypes"
|
||||||
|
#pragma GCC diagnostic error "-Wmissing-declarations"
|
||||||
|
|
||||||
#include "progname.h"
|
#include "progname.h"
|
||||||
#include "argp.h"
|
|
||||||
|
|
||||||
static const char *root = NULL;
|
static const char *root = NULL;
|
||||||
grub_device_t dev = NULL;
|
grub_device_t dev = NULL;
|
||||||
|
|
Loading…
Reference in a new issue