diff options
| author | Ben Straub <bs@github.com> | 2013-01-02 12:44:47 -0800 |
|---|---|---|
| committer | Ben Straub <bs@github.com> | 2013-01-02 12:44:47 -0800 |
| commit | 0642c1431eccdf7aef496c0dc6d64805c513db53 (patch) | |
| tree | c9471e1cc2f0540b0c4b0621d48fa323e683b008 /src/remote.c | |
| parent | 3de2256708a206bc01bca0fe418b8448d1b41855 (diff) | |
| download | libgit2-0642c1431eccdf7aef496c0dc6d64805c513db53.tar.gz | |
Move `url` to last place in parameter list
Diffstat (limited to 'src/remote.c')
| -rw-r--r-- | src/remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote.c b/src/remote.c index d874d6075..a2e6e68bd 100644 --- a/src/remote.c +++ b/src/remote.c @@ -183,7 +183,7 @@ on_error: return -1; } -int git_remote_create_inmemory(git_remote **out, git_repository *repo, const char *url, const char *fetch) +int git_remote_create_inmemory(git_remote **out, git_repository *repo, const char *fetch, const char *url) { int error; git_remote *remote; |
