From eea1ff6a83a318d7749110baa81c249a6faea8ef Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 3 Apr 2016 18:13:22 -0500 Subject: Change the git progress update callback signature This way we can include additional text. This will be used in later patches. Signed-off-by: Dirk Hohndel --- subsurface-core/git-access.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'subsurface-core/git-access.c') diff --git a/subsurface-core/git-access.c b/subsurface-core/git-access.c index 4213d18f0..36413a55c 100644 --- a/subsurface-core/git-access.c +++ b/subsurface-core/git-access.c @@ -22,9 +22,9 @@ bool is_subsurface_cloud = false; -int (*update_progress_cb)(int) = NULL; +int (*update_progress_cb)(int, const char *) = NULL; -void set_git_update_cb(int(*cb)(int)) +void set_git_update_cb(int(*cb)(int, const char *)) { update_progress_cb = cb; } @@ -34,7 +34,7 @@ static int update_progress(int percent) static int last_percent = -10; int ret = 0; if (update_progress_cb) - ret = (*update_progress_cb)(percent); + ret = (*update_progress_cb)(percent, ""); if (verbose && percent - 10 >= last_percent) { last_percent = percent; fprintf(stderr, "git progress %d%%\n", percent); -- cgit v1.2.3-70-g09d2