diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-04-18 10:20:49 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-04-18 10:20:49 +0200 |
commit | e34d491ee14d6fc76294296552a070004493af32 (patch) | |
tree | 3d3105ad2928c0324ba3428a387c31958299ff22 /src/mds-base.c | |
parent | typo + update todo (diff) | |
download | mds-e34d491ee14d6fc76294296552a070004493af32.tar.gz mds-e34d491ee14d6fc76294296552a070004493af32.tar.bz2 mds-e34d491ee14d6fc76294296552a070004493af32.tar.xz |
m doc + iprint and iprintf macros + siginfo on mds, mds-vt and mds-respawn
Signed-off-by: Mattias Andrée <maandree@operamail.com>
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 /** |