summaryrefslogtreecommitdiff
path: root/include/git2
diff options
context:
space:
mode:
authorCarlos Martín Nieto <carlos@cmartin.tk>2011-06-22 15:34:37 +0200
committerCarlos Martín Nieto <carlos@cmartin.tk>2011-06-26 20:48:01 +0200
commitce90a407c7b873780456b182d82d3ba26adbd182 (patch)
tree7e8c360910ee2c48e660f09fbaba33272cd9541f /include/git2
parent4e913309b92138cdc6ff31fbce4e8afa2ab5458e (diff)
downloadlibgit2-ce90a407c7b873780456b182d82d3ba26adbd182.tar.gz
Remove the repo param from git_transport_new
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'include/git2')
-rw-r--r--include/git2/transport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/transport.h b/include/git2/transport.h
index a12b11b34..01883f2ca 100644
--- a/include/git2/transport.h
+++ b/include/git2/transport.h
@@ -43,7 +43,7 @@ GIT_BEGIN_DECL
* @param tranport the transport for the url
* @param url the url of the repo
*/
-GIT_EXTERN(int) git_transport_new(git_transport **transport, git_repository *repo, const char *url);
+GIT_EXTERN(int) git_transport_new(git_transport **transport, const char *url);
GIT_EXTERN(int) git_transport_connect(git_transport *transport, git_net_direction direction);