gout

A static git page generator
git clone https://git.bracken.jp/gout.git
Log | Files | Refs | README | LICENSE

commit 77dc5f628510a0e92aa75a3ffb674b9089b62894
parent 809d0d0b36dd61a5ab4d296b1129a6d567d93ba9
Author: Chris Bracken <chris@bracken.jp>
Date:   Fri,  6 Feb 2026 19:15:23 +0900

Make GitRepo->repo type explicit

There's no need for it to be a void* given that it's an implementation
detail and not exposed in a header.

Diffstat:
Msrc/git/repo.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/git/repo.c b/src/git/repo.c @@ -36,7 +36,7 @@ struct GitRepo { const char* readme; const char* license; - void* repo; + git_repository* repo; }; /* Local const data */