diff options
Diffstat (limited to 'include/git2/checkout.h')
-rw-r--r-- | include/git2/checkout.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/git2/checkout.h b/include/git2/checkout.h index 9032c6b2c..390d2f215 100644 --- a/include/git2/checkout.h +++ b/include/git2/checkout.h @@ -70,7 +70,8 @@ typedef struct git_checkout_opts { /* Optional callback to notify the consumer of checkout progress. */ void (* progress_cb)( const char *path, - float progress, + size_t completed_steps, + size_t total_steps, void *payload); void *progress_payload; |