svn commit: r356942 - head/lib/libc/gen

Brooks Davis brooks at FreeBSD.org
Tue Jan 21 16:31:09 UTC 2020


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);
 }


More information about the svn-src-head mailing list