Commit b4a173b5 by Edward Thomson

rebase: use size_t for path length

parent 991c9454
......@@ -298,7 +298,8 @@ int git_rebase_open(
git_rebase *rebase;
git_buf path = GIT_BUF_INIT, orig_head_name = GIT_BUF_INIT,
orig_head_id = GIT_BUF_INIT, onto_id = GIT_BUF_INIT;
int state_path_len, error;
size_t state_path_len;
int error;
assert(repo);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment