diff options
author | Julian Phillips <julian@quantumfyre.co.uk> | 2010-06-26 00:41:34 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-06-27 10:06:51 -0700 |
commit | b684e977363ee5cb53d83c69f2298d7898c5f89a (patch) | |
tree | b5f70daef883213e3f69643113601cc07e872083 /resolve-undo.c | |
parent | cb944f6b5009e4788041a5194d73b92a0620c9d9 (diff) | |
download | git-b684e977363ee5cb53d83c69f2298d7898c5f89a.tar.gz |
string_list: Fix argument order for for_each_string_list
Update the definition and callers of for_each_string_list to use the
string_list as the first argument. This helps make the string_list
API easier to use by being more consistent.
Signed-off-by: Julian Phillips <julian@quantumfyre.co.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'resolve-undo.c')
-rw-r--r-- | resolve-undo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resolve-undo.c b/resolve-undo.c index 0f50ee0484..e93b3d1b53 100644 --- a/resolve-undo.c +++ b/resolve-undo.c @@ -50,7 +50,7 @@ static int write_one(struct string_list_item *item, void *cbdata) void resolve_undo_write(struct strbuf *sb, struct string_list *resolve_undo) { - for_each_string_list(write_one, resolve_undo, sb); + for_each_string_list(resolve_undo, write_one, sb); } struct string_list *resolve_undo_read(const char *data, unsigned long size) |