Girocco/Util.pm: use integer value of $! in noFatalsToBrowser
commit38eb6b314484c5855887504c3cc7f0e12cb5be85
authorKyle J. McKay <mackyle@gmail.com>
Tue, 2 Mar 2021 00:05:38 +0000 (1 17:05 -0700)
committerKyle J. McKay <mackyle@gmail.com>
Tue, 2 Mar 2021 00:05:38 +0000 (1 17:05 -0700)
tree8a6fee69bf834089798972733df880dabb27b31f
parentd971365bdbe30f376a0907ada3eaef7558261271
Girocco/Util.pm: use integer value of $! in noFatalsToBrowser

The default value of "$!" is a string which is not at all
helpful when trying to pass that to the "exit" function.

Force it into a numeric context by using (0+$!) to get the
proper integer to pass to the exit function.

Signed-off-by: Kyle J. McKay <mackyle@gmail.com>
Girocco/Util.pm