timekeeper

[Abandoned unfinished] CGI web application in C for time tracking. (My first, just a learning project)
Log | Files | Refs | README

commit 4855d21a1d1f5184899fa4543246dde9341a8bb4
parent 168b935203351c2e4f188bcf87dba37190afb7a0
Author: Jacob R. Edwards <jacob@jacobedwards.org>
Date:   Mon, 11 Mar 2024 17:52:31 -0700

Remove unused variable

Diffstat:
Mpages/main.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pages/main.c b/pages/main.c @@ -254,7 +254,7 @@ pagemain(struct pagedata *pd) { enum kcgi_err status; enum time_field tf; - struct timesheet *times, *end, *new; + struct timesheet *times, *end; if (!pd->user) return errorpage(pd, KHTTP_401);