diff options
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | 2020-03-12 10:57:04 +0100 |
---|---|---|
committer | Ruben Kerkhof <ruben@rubenkerkhof.com> | 2020-03-19 18:33:48 +0100 |
commit | b25b292538d4eb92bbc2d4b73863a9c745db2f8c (patch) | |
tree | 13194a8fe3ccb370cbc2e144be029b0fb83c2588 /zebra/zserv.h | |
parent | Merge pull request #6044 from donaldsharp/bfd_increase_timers_in_test (diff) | |
download | frr-b25b292538d4eb92bbc2d4b73863a9c745db2f8c.tar.xz frr-b25b292538d4eb92bbc2d4b73863a9c745db2f8c.zip |
treewide: add attribute to functions that do not return
Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
Diffstat (limited to 'zebra/zserv.h')
-rw-r--r-- | zebra/zserv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zserv.h b/zebra/zserv.h index 6a075cc9a..6ab7fbd91 100644 --- a/zebra/zserv.h +++ b/zebra/zserv.h @@ -314,7 +314,7 @@ extern void zserv_read_file(char *input); #endif /* TODO */ -int zebra_finalize(struct thread *event); +__attribute__((__noreturn__)) int zebra_finalize(struct thread *event); /* * Graceful restart functions. |