Commit e86fe835 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

More flexelinting

parent 80b041ca
...@@ -135,6 +135,11 @@ ...@@ -135,6 +135,11 @@
-esym(534, VSB_vprintf) -esym(534, VSB_vprintf)
-esym(534, VSB_putc) -esym(534, VSB_putc)
///////////////////////////////////////////////////////////////////////
// <vtree.h>
-emacro(801, VRB_*) // goto considered bad
/////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////
// <vqueue.h> // <vqueue.h>
......
...@@ -254,9 +254,9 @@ VUT_Signaled(struct VUT *vut, int sig) ...@@ -254,9 +254,9 @@ VUT_Signaled(struct VUT *vut, int sig)
{ {
CHECK_OBJ_NOTNULL(vut, VUT_MAGIC); CHECK_OBJ_NOTNULL(vut, VUT_MAGIC);
vut->sighup |= (sig == SIGHUP); vut->sighup |= (int)(sig == SIGHUP);
vut->sigint |= (sig == SIGINT || sig == SIGTERM); vut->sigint |= (int)(sig == SIGINT || sig == SIGTERM);
vut->sigusr1 |= (sig == SIGUSR1); vut->sigusr1 |= (int)(sig == SIGUSR1);
} }
void void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment