From 849a1a4345c6392b491ad0d326095638e0ef9e73 Mon Sep 17 00:00:00 2001 From: Lucas Derraugh Date: Thu, 5 May 2016 23:34:23 -0400 Subject: [PATCH] Fix unused variable 'message' warning --- src/stransport_stream.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stransport_stream.c b/src/stransport_stream.c index 33b6c5c38..832f66b45 100644 --- a/src/stransport_stream.c +++ b/src/stransport_stream.c @@ -33,6 +33,7 @@ int stransport_error(OSStatus ret) CFRelease(message); #else giterr_set(GITERR_NET, "SecureTransport error: OSStatus %d", (unsigned int)ret); + GIT_UNUSED(message); #endif return -1;