check_fping.c: add parentheses for silencing this warning
See,
check_fping.c:150:14: warning: using the result of an assignment as a condition
without parentheses [-Wparentheses]
if (result = spclose (child_process))
~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
check_fping.c:150:14: note: place parentheses around the assignment to silence
this warning
if (result = spclose (child_process))
^
( )
check_fping.c:150:14: note: use '==' to turn this assignment into an equality
comparison
if (result = spclose (child_process))
^
==
1 warning generated.