scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 8e3aa834b79499d2a5f4d81cc9644e82d7228ad8
parent 81584392c03d6ee8190dd542cda069475b5bcdc9
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Thu, 31 Mar 2022 20:11:46 +0200

libc: posix: tiny code-style fix

Diffstat:
Msrc/libc/arch/posix/time.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

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