sys: fix formatting in sys_linux.c

This commit is contained in:
Miroslav Lichvar 2014-12-09 17:26:30 +01:00
parent e14a03a172
commit 2645e632a8

View file

@ -82,13 +82,15 @@ static int tick_update_hz;
/* ================================================== */
inline static long
our_round(double x) {
our_round(double x)
{
long y;
if (x > 0.0)
y = x + 0.5;
y = x + 0.5;
else
y = x - 0.5;
y = x - 0.5;
return y;
}