Commit 25732821 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp Committed by Dridi Boukelmoune

More flexelinting

parent 81a43b62
......@@ -135,6 +135,11 @@
-esym(534, VSB_vprintf)
-esym(534, VSB_putc)
///////////////////////////////////////////////////////////////////////
// <vtree.h>
-emacro(801, VRB_*) // goto considered bad
///////////////////////////////////////////////////////////////////////
// <vqueue.h>
......
......@@ -254,9 +254,9 @@ VUT_Signaled(struct VUT *vut, int sig)
{
CHECK_OBJ_NOTNULL(vut, VUT_MAGIC);
vut->sighup |= (sig == SIGHUP);
vut->sigint |= (sig == SIGINT || sig == SIGTERM);
vut->sigusr1 |= (sig == SIGUSR1);
vut->sighup |= (int)(sig == SIGHUP);
vut->sigint |= (int)(sig == SIGINT || sig == SIGTERM);
vut->sigusr1 |= (int)(sig == SIGUSR1);
}
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