wincng.c: fix unused argument warning if clear memory is not enabled
diff --git a/src/wincng.c b/src/wincng.c
index ed6c6e9..d180a1a 100644
--- a/src/wincng.c
+++ b/src/wincng.c
@@ -288,6 +288,10 @@
 static void
 _libssh2_wincng_safe_free(void *buf, int len)
 {
+#ifndef LIBSSH2_CLEAR_MEMORY
+    (void)len;
+#endif
+
     if (!buf)
         return;