]> git.ipfire.org Git - thirdparty/chrony.git/commitdiff
sys: fix formatting in sys_linux.c
authorMiroslav Lichvar <mlichvar@redhat.com>
Tue, 9 Dec 2014 16:26:30 +0000 (17:26 +0100)
committerMiroslav Lichvar <mlichvar@redhat.com>
Wed, 10 Dec 2014 14:35:56 +0000 (15:35 +0100)
sys_linux.c

index d2091b99575a8e0684c9a57278750aea1a89fe9a..4e25751f8fe2f4f60b09181fd1c355c5b9c63b7f 100644 (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;
 }