Suppress the "unused parameter" warning in get_random_bytes()

This commit is contained in:
Marco d'Itri 2024-02-24 17:08:17 +01:00
parent 4754721796
commit 8a3bbc2473

View File

@ -424,6 +424,7 @@ int main(int argc, char *argv[])
*/
inline void *get_random_bytes(const unsigned int count)
{
(void)(count); /* suppress the "unused parameter" warning */
return NULL;
}