Author: brooks
Date: Tue Jan 21 16:31:08 2020
New Revision: 356942
URL: https://svnweb.freebsd.org/changeset/base/356942

Log:
  Correct a misleading indent.
  
  This dates to before the beginning of our repo and was found clang 10.
  
  MFC after:    3 days
  Sponsored by: DARPA

Modified:
  head/lib/libc/gen/ualarm.c

Modified: head/lib/libc/gen/ualarm.c
==============================================================================
--- head/lib/libc/gen/ualarm.c  Tue Jan 21 15:07:23 2020        (r356941)
+++ head/lib/libc/gen/ualarm.c  Tue Jan 21 16:31:08 2020        (r356942)
@@ -56,6 +56,5 @@ ualarm(useconds_t usecs, useconds_t reload)
 
        if (setitimer(ITIMER_REAL, &new, &old) == 0)
                return (old.it_value.tv_sec * USPS + old.it_value.tv_usec);
-       /* else */
-               return (-1);
+       return (-1);
 }
_______________________________________________
[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