Skip to content

Commit e0f9a51

Browse files
chooglengitster
authored andcommitted
urlmatch.h: use config_fn_t type
These are actually used as config callbacks, so use the typedef-ed type and make future refactors easier. Signed-off-by: Glen Choo <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 97eeeea commit e0f9a51

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

urlmatch.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#define URL_MATCH_H
33

44
#include "string-list.h"
5+
#include "config.h"
56

67
struct url_info {
78
/* normalized url on success, must be freed, otherwise NULL */
@@ -48,8 +49,8 @@ struct urlmatch_config {
4849
const char *key;
4950

5051
void *cb;
51-
int (*collect_fn)(const char *var, const char *value, void *cb);
52-
int (*cascade_fn)(const char *var, const char *value, void *cb);
52+
config_fn_t collect_fn;
53+
config_fn_t cascade_fn;
5354
/*
5455
* Compare the two matches, the one just discovered and the existing
5556
* best match and return a negative value if the found item is to be

0 commit comments

Comments
 (0)