diff options
Diffstat (limited to '')
-rw-r--r-- | src/mds-base.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mds-base.c b/src/mds-base.c index b944d08..2e6a3b1 100644 --- a/src/mds-base.c +++ b/src/mds-base.c @@ -373,10 +373,13 @@ void __attribute__((weak)) received_danger(int signo) * * @param signo The signal that has been received */ +# pragma GCC diagnostic push +# pragma GCC diagnostic ignored "-Wsuggest-attribute=const" void __attribute__((weak)) received_info(int signo) { (void) signo; } +# pragma GCC diagnostic pop /** |