libobs: Remove variable-length array

This commit is contained in:
tytan652 2023-07-31 19:02:24 +02:00
parent 27630a8c0e
commit 54bacd4f10

View file

@ -462,7 +462,7 @@ static bool code_to_str(int code, struct dstr *str)
void obs_key_to_str(obs_key_t key, struct dstr *str)
{
const UniCharCount max_length = 16;
UniChar buffer[max_length];
UniChar buffer[16];
if (localized_key_to_str(key, str))
return;