From 52b46496366e3044b169d81f4eca80ca5e078094 Mon Sep 17 00:00:00 2001 From: Giuseppe Modugno Date: Thu, 24 Feb 2022 16:58:44 +0100 Subject: [PATCH] Replace C++ comment with standard C comment to avoid error during building with -Werror. --- contrib/ports/win32/sys_arch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/ports/win32/sys_arch.c b/contrib/ports/win32/sys_arch.c index 61897e9d..84f5775e 100644 --- a/contrib/ports/win32/sys_arch.c +++ b/contrib/ports/win32/sys_arch.c @@ -101,7 +101,7 @@ lwip_port_rand(void) if (CryptGenRandom(hcrypt, sizeof(ret), (BYTE*)&ret)) { return ret; } - // maybe CryptAcquireContext has not been called... + /* maybe CryptAcquireContext has not been called... */ sys_win_rand_init(); if (CryptGenRandom(hcrypt, sizeof(ret), (BYTE*)&ret)) { return ret;