svn commit: r357836 - stable/12/lib/libc/gen

Brooks Davis brooks at FreeBSD.org
Wed Feb 12 18:40:29 UTC 2020


Author: brooks
Date: Wed Feb 12 18:40:29 2020
New Revision: 357836
URL: https://svnweb.freebsd.org/changeset/base/357836

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

Modified:
  stable/12/lib/libc/gen/ualarm.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/lib/libc/gen/ualarm.c
==============================================================================
--- stable/12/lib/libc/gen/ualarm.c	Wed Feb 12 18:11:07 2020	(r357835)
+++ stable/12/lib/libc/gen/ualarm.c	Wed Feb 12 18:40:29 2020	(r357836)
@@ -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-stable mailing list