Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
string_list: Fix argument order for string_list_insert
[gitweb.git]
/
reflog-walk.c
diff --git
a/reflog-walk.c
b/reflog-walk.c
index caba4f743f2dcc1cf7046cec294f242b2af19052..f125f374612a373f0875951f3aa683cb19fea66a 100644
(file)
--- a/
reflog-walk.c
+++ b/
reflog-walk.c
@@
-190,7
+190,7
@@
int add_reflog_for_walk(struct reflog_walk_info *info,
}
if (!reflogs || reflogs->nr == 0)
return -1;
- string_list_insert(
branch, &info->complete_reflogs
)->util
+ string_list_insert(
&info->complete_reflogs, branch
)->util
= reflogs;
}