Author: kib
Date: Sun Jan  1 12:03:41 2017
New Revision: 311009
URL: https://svnweb.freebsd.org/changeset/base/311009

Log:
  MFC r310552:
  Some style.

Modified:
  stable/10/sys/kern/kern_event.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/kern/kern_event.c
==============================================================================
--- stable/10/sys/kern/kern_event.c     Sun Jan  1 11:38:34 2017        
(r311008)
+++ stable/10/sys/kern/kern_event.c     Sun Jan  1 12:03:41 2017        
(r311009)
@@ -571,7 +571,7 @@ timer2sbintime(intptr_t data, int flags)
        case NOTE_SECONDS:
 #ifdef __LP64__
                if (data > (SBT_MAX / SBT_1S))
-                       return SBT_MAX;
+                       return (SBT_MAX);
 #endif
                return ((sbintime_t)data << 32);
        case NOTE_MSECONDS: /* FALLTHROUGH */
@@ -580,7 +580,7 @@ timer2sbintime(intptr_t data, int flags)
                        int64_t secs = data / 1000;
 #ifdef __LP64__
                        if (secs > (SBT_MAX / SBT_1S))
-                               return SBT_MAX;
+                               return (SBT_MAX);
 #endif
                        return (secs << 32 | MS_TO_SBT(data % 1000));
                }
@@ -590,7 +590,7 @@ timer2sbintime(intptr_t data, int flags)
                        int64_t secs = data / 1000000;
 #ifdef __LP64__
                        if (secs > (SBT_MAX / SBT_1S))
-                               return SBT_MAX;
+                               return (SBT_MAX);
 #endif
                        return (secs << 32 | US_TO_SBT(data % 1000000));
                }
@@ -600,11 +600,11 @@ timer2sbintime(intptr_t data, int flags)
                        int64_t secs = data / 1000000000;
 #ifdef __LP64__
                        if (secs > (SBT_MAX / SBT_1S))
-                               return SBT_MAX;
+                               return (SBT_MAX);
 #endif
                        return (secs << 32 | US_TO_SBT(data % 1000000000));
                }
-               return NS_TO_SBT(data);
+               return (NS_TO_SBT(data));
        default:
                break;
        }
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to