diff options
author | Carlos Martín Nieto <carlos@cmartin.tk> | 2011-06-26 19:40:02 +0200 |
---|---|---|
committer | Carlos Martín Nieto <carlos@cmartin.tk> | 2011-06-26 20:43:44 +0200 |
commit | cbf742ac4e7daccae10fd60d0651242c49663bd3 (patch) | |
tree | d4af8b88a7e076bddd149896e7d8ea583bf365e0 /include/git2/pkt.h | |
parent | c4d0fa85b1032690a89989bf15f984b3840b3eee (diff) | |
download | libgit2-cbf742ac4e7daccae10fd60d0651242c49663bd3.tar.gz |
Use (s)size_t
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'include/git2/pkt.h')
-rw-r--r-- | include/git2/pkt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/pkt.h b/include/git2/pkt.h index 7a91ed490..bcd5c81d1 100644 --- a/include/git2/pkt.h +++ b/include/git2/pkt.h @@ -56,5 +56,5 @@ struct git_pkt_ref { */ int git_pkt_gen_proto(char **out, int *outlen, const char *cmd, const char *url); int git_pkt_send_request(int socket, const char *cmd, const char *url); -int git_pkt_parse_line(git_pkt **head, const char *line, const char **out, unsigned int len); +int git_pkt_parse_line(git_pkt **head, const char *line, const char **out, size_t len); void git_pkt_free(git_pkt *pkt); |