diff options
author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-03-20 10:40:41 +0100 |
---|---|---|
committer | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-03-21 13:58:21 +0100 |
commit | 09fdbbe98cf143a5cf0418d6f804646ee00a9e4d (patch) | |
tree | 741b3e2519b106796b06c74cdc547a3722f9f5a5 | |
parent | Merge pull request #6065 from ton31337/doc/rfc_supported_bgp (diff) | |
download | frr-09fdbbe98cf143a5cf0418d6f804646ee00a9e4d.tar.xz frr-09fdbbe98cf143a5cf0418d6f804646ee00a9e4d.zip |
tools: Convert type int functions to bool where possible
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
-rw-r--r-- | tools/coccinelle/int_to_bool_function.cocci | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/coccinelle/int_to_bool_function.cocci b/tools/coccinelle/int_to_bool_function.cocci new file mode 100644 index 000000000..f86fe70be --- /dev/null +++ b/tools/coccinelle/int_to_bool_function.cocci @@ -0,0 +1,24 @@ +@@ +identifier fn; +typedef bool; +symbol false; +symbol true; +identifier I; +struct thread *thread; +@@ + +- int ++ bool +fn (...) +{ +... when strict + when != I = THREAD_ARG(thread); +( +- return 0; ++ return false; +| +- return 1; ++ return true; +) +?... +} |