summaryrefslogtreecommitdiff
path: root/fsck.h
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2016-07-17 10:59:57 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-07-18 18:35:00 (GMT)
commit1cd772cc4124e43b14231dcaeae8a5dddf4ffdb9 (patch)
treeb2c194259ff773b03bc5a3f3921a8d595aef63da /fsck.h
parent7b35efd734e501f9e4692768a8b6aea818c0c93e (diff)
downloadgit-1cd772cc4124e43b14231dcaeae8a5dddf4ffdb9.zip
git-1cd772cc4124e43b14231dcaeae8a5dddf4ffdb9.tar.gz
git-1cd772cc4124e43b14231dcaeae8a5dddf4ffdb9.tar.bz2
fsck: give the error function a chance to see the fsck_options
We will need this in the next commit, where fsck will be taught to optionally name the objects when reporting issues about them. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'fsck.h')
-rw-r--r--fsck.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/fsck.h b/fsck.h
index 26c0d41..1891c18 100644
--- a/fsck.h
+++ b/fsck.h
@@ -23,9 +23,11 @@ int is_valid_msg_type(const char *msg_id, const char *msg_type);
typedef int (*fsck_walk_func)(struct object *obj, int type, void *data, struct fsck_options *options);
/* callback for fsck_object, type is FSCK_ERROR or FSCK_WARN */
-typedef int (*fsck_error)(struct object *obj, int type, const char *message);
+typedef int (*fsck_error)(struct fsck_options *o,
+ struct object *obj, int type, const char *message);
-int fsck_error_function(struct object *obj, int type, const char *message);
+int fsck_error_function(struct fsck_options *o,
+ struct object *obj, int type, const char *message);
struct fsck_options {
fsck_walk_func walk;