From c7c98ae6f72c00c569b2977e0a3e2a931286562b Mon Sep 17 00:00:00 2001 From: Vladimir Serbinenko Date: Sat, 18 Jan 2014 16:43:29 +0100 Subject: [PATCH 018/112] * util/grub-mount.c: Extend GCC warning workaround to grub-mount. --- ChangeLog | 4 ++++ util/grub-mount.c | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9dd67e4..acebfc5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2014-01-18 Vladimir Serbinenko + * util/grub-mount.c: Extend GCC warning workaround to grub-mount. + +2014-01-18 Vladimir Serbinenko + * grub-core/kern/efi/efi.c: Ensure that the result starts with / and has no //. diff --git a/util/grub-mount.c b/util/grub-mount.c index 118881e..19de2e6 100644 --- a/util/grub-mount.c +++ b/util/grub-mount.c @@ -41,8 +41,13 @@ #include #include +#pragma GCC diagnostic ignored "-Wmissing-prototypes" +#pragma GCC diagnostic ignored "-Wmissing-declarations" +#include +#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; -- 1.8.5.3