author | Junio C Hamano <gitster@pobox.com> | |
Fri, 4 Jul 2008 07:37:40 +0000 (00:37 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Fri, 4 Jul 2008 07:37:40 +0000 (00:37 -0700) | ||
commit | f444e5286ee8986adb0899f85cc292fc2cd7cd04 | |
tree | 13c607b5e7bbecea55ba7d1cde51c66b2d8562b4 | tree | snapshot |
parent | 182c5afa6c00eb8b773fc062bfd2c29f27ea546b | commit | diff |
Work around gcc warnings from curl headers
After master.k.org upgrade, I started seeing these warning messages:
transport.c: In function 'get_refs_via_curl':
transport.c:458: error: call to '_curl_easy_setopt_err_write_callback' declared with attribute warning: curl_easy_setopt expects a curl_write_callback argument for this option
It appears that the curl header wants to enforce the function signature
for callback function given to curl_easy_setopt() to be compatible with
that of (*curl_write_callback) or fwrite. This patch seems to work the
issue around.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
After master.k.org upgrade, I started seeing these warning messages:
transport.c: In function 'get_refs_via_curl':
transport.c:458: error: call to '_curl_easy_setopt_err_write_callback' declared with attribute warning: curl_easy_setopt expects a curl_write_callback argument for this option
It appears that the curl header wants to enforce the function signature
for callback function given to curl_easy_setopt() to be compatible with
that of (*curl_write_callback) or fwrite. This patch seems to work the
issue around.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
http.c | diff | blob | history | |
http.h | diff | blob | history |