* util/grub-mount.c: Extend GCC warning workaround to grub-mount.

This commit is contained in:
Vladimir Serbinenko 2014-01-18 16:43:29 +01:00
parent 7e7293d745
commit ae80f31270
2 changed files with 10 additions and 1 deletions

View File

@ -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>
* grub-core/kern/efi/efi.c: Ensure that the result starts with /

View File

@ -41,8 +41,13 @@
#include <string.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 "argp.h"
static const char *root = NULL;
grub_device_t dev = NULL;