diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-01-11 22:30:36 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-01-12 01:06:08 -0800 |
commit | 5092d3ec21ab335e5908fd8abfe99bbc13812606 (patch) | |
tree | e55b5bf0b5dc12fec97dbea1f0453308d30e81c4 | |
parent | read-cache.c: mark file-local functions static (diff) | |
download | tgif-5092d3ec21ab335e5908fd8abfe99bbc13812606.tar.xz |
remote-curl.c: mark file-local function static
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | remote-curl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remote-curl.c b/remote-curl.c index 28b2a316d3..b76dcb2e88 100644 --- a/remote-curl.c +++ b/remote-curl.c @@ -317,7 +317,7 @@ static size_t rpc_out(void *ptr, size_t eltsize, } #ifndef NO_CURL_IOCTL -curlioerr rpc_ioctl(CURL *handle, int cmd, void *clientp) +static curlioerr rpc_ioctl(CURL *handle, int cmd, void *clientp) { struct rpc_state *rpc = clientp; |