summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/streams/stransport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/streams/stransport.c b/src/streams/stransport.c
index cca17bb94..15b305745 100644
--- a/src/streams/stransport.c
+++ b/src/streams/stransport.c
@@ -62,7 +62,7 @@ static int stransport_connect(git_stream *stream)
ret = SSLHandshake(st->ctx);
if (ret != errSSLServerAuthCompleted) {
- giterr_set(GITERR_SSL, "unexpected return value from ssl handshake %d", ret);
+ giterr_set(GITERR_SSL, "unexpected return value from ssl handshake %d", (int)ret);
return -1;
}