diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-06-16 12:17:50 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-16 12:17:50 -0700 |
commit | a634a6d209fc67ed8fb58925a6ae713b2a913a83 (patch) | |
tree | f0d17737e519bc1de9bc89bba5ddcc57366f847c /transport-helper.c | |
parent | 6d681f0a3e1fd10d4f51df3a90af30f4de299f89 (diff) | |
parent | 92e25b6b5b66320e73ace921f3db816ef4243d1b (diff) | |
download | git-a634a6d209fc67ed8fb58925a6ae713b2a913a83.tar.gz |
Merge branch 'bg/xcalloc-nmemb-then-size'
Like calloc(3), xcalloc() takes nmemb and then size.
* bg/xcalloc-nmemb-then-size:
transport-helper.c: rearrange xcalloc arguments
remote.c: rearrange xcalloc arguments
reflog-walk.c: rearrange xcalloc arguments
pack-revindex.c: rearrange xcalloc arguments
notes.c: rearrange xcalloc arguments
imap-send.c: rearrange xcalloc arguments
http-push.c: rearrange xcalloc arguments
diff.c: rearrange xcalloc arguments
config.c: rearrange xcalloc arguments
commit.c: rearrange xcalloc arguments
builtin/remote.c: rearrange xcalloc arguments
builtin/ls-remote.c: rearrange xcalloc arguments
Diffstat (limited to 'transport-helper.c')
-rw-r--r-- | transport-helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/transport-helper.c b/transport-helper.c index d9063d7145..4cfb8f3a4a 100644 --- a/transport-helper.c +++ b/transport-helper.c @@ -1014,7 +1014,7 @@ static struct ref *get_refs_list(struct transport *transport, int for_push) int transport_helper_init(struct transport *transport, const char *name) { - struct helper_data *data = xcalloc(sizeof(*data), 1); + struct helper_data *data = xcalloc(1, sizeof(*data)); data->name = name; if (getenv("GIT_TRANSPORT_HELPER_DEBUG")) |