svn commit: r357837 - stable/11/lib/libc/gen
Brooks Davis
brooks at FreeBSD.org
Wed Feb 12 18:48:40 UTC 2020
Author: brooks
Date: Wed Feb 12 18:48:39 2020
New Revision: 357837
URL: https://svnweb.freebsd.org/changeset/base/357837
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/11/lib/libc/gen/ualarm.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/lib/libc/gen/ualarm.c
==============================================================================
--- stable/11/lib/libc/gen/ualarm.c Wed Feb 12 18:40:29 2020 (r357836)
+++ stable/11/lib/libc/gen/ualarm.c Wed Feb 12 18:48:39 2020 (r357837)
@@ -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-all
mailing list