Replace C++ comment with standard C comment to avoid error during building with -Werror.

This commit is contained in:
Giuseppe Modugno 2022-02-24 16:58:44 +01:00 committed by Erik Ekman
parent 124dc0a64e
commit 52b4649636

View File

@ -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;