From: ljsebald <ljs...@us...> - 2023-03-29 19:02:51
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via 8982377032426e3a5820d94cd580cf14f85001c5 (commit) from 7237ac56f9141d130c3dac749ccb4becabcd1df5 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 8982377032426e3a5820d94cd580cf14f85001c5 Author: Lawrence Sebald <ljs...@us...> Date: Wed Mar 29 15:02:27 2023 -0400 timespec_get: add back in missing return. ----------------------------------------------------------------------- Summary of changes: kernel/libc/c11/timespec_get.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/libc/c11/timespec_get.c b/kernel/libc/c11/timespec_get.c index a1f05dc..5a9a850 100644 --- a/kernel/libc/c11/timespec_get.c +++ b/kernel/libc/c11/timespec_get.c @@ -15,6 +15,8 @@ int timespec_get(struct timespec *ts, int base) { timer_ms_gettime(&s, &ms); ts->tv_sec = rtc_boot_time() + s; ts->tv_nsec = ms * 1000 * 1000; + + return base; } return 0; hooks/post-receive -- A pseudo Operating System for the Dreamcast. |