]> jfr.im git - solanum.git/commit
librb: silence some fairly harmless compiler warnings
authorAaron Jones <redacted>
Wed, 1 Jun 2016 19:50:09 +0000 (19:50 +0000)
committerAaron Jones <redacted>
Wed, 1 Jun 2016 19:50:09 +0000 (19:50 +0000)
commit92706fd5515100c54e18016f91b7cc8a10686949
tree78dc4d1badf6b99fce2bb580cc929e6a2b8e045b
parent1a938496eb7ff990d0c13318af66232c9b501ae1
librb: silence some fairly harmless compiler warnings

These include warnings about "break" statements that will never be
executed (because they are after "return" statements), unused macros
(lost to code refactoring or never even used in the first place),
functions that call abort() or loop indefinitely but aren't marked with
the "noreturn" attribute, and use of variables possibly uninitialised
(a false positive).
librb/include/rb_helper.h
librb/include/rb_lib.h
librb/include/rb_memory.h
librb/src/balloc.c
librb/src/commio.c
librb/src/crypt.c
librb/src/linebuf.c
librb/src/patricia.c