From 5b4e73c203f5f4484d66f043f1e9114daefeb632 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Mon, 4 May 2026 17:50:43 +0200 Subject: cgit: devirtualize repo_config There's no reason to pass around function pointers. It was never used for anything beyond one function. Signed-off-by: Jason A. Donenfeld --- cgit.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'cgit.h') diff --git a/cgit.h b/cgit.h index 6945eb9..1db3473 100644 --- a/cgit.h +++ b/cgit.h @@ -121,9 +121,6 @@ struct cgit_repo { int ignore; }; -typedef void (*repo_config_fn)(struct cgit_repo *repo, const char *name, - const char *value); - struct cgit_repolist { int length; int count; @@ -334,7 +331,8 @@ extern const struct cgit_snapshot_format cgit_snapshot_formats[]; extern char *cgit_default_repo_desc; extern struct cgit_repo *cgit_add_repo(const char *url); extern struct cgit_repo *cgit_get_repoinfo(const char *url); -extern void cgit_repo_config_cb(const char *name, const char *value); +extern void cgit_repo_config(struct cgit_repo *repo, const char *name, + const char *value); extern int chk_zero(int result, char *msg); extern int chk_positive(int result, char *msg); -- cgit v1.2.3