shithub: scc

Download patch

ref: 8e3aa834b79499d2a5f4d81cc9644e82d7228ad8
parent: 81584392c03d6ee8190dd542cda069475b5bcdc9
author: Hiltjo Posthuma <hiltjo@codemadness.org>
date: Thu Mar 31 16:11:46 EDT 2022

libc: posix: tiny code-style fix

--- a/src/libc/arch/posix/time.c
+++ b/src/libc/arch/posix/time.c
@@ -12,6 +12,6 @@
 	if (_gettimeofday(&tv, NULL) == -1)
 		return -1;
 	if (t)
-		*t =tv.tv_sec;
+		*t = tv.tv_sec;
 	return tv.tv_sec;
 }