0
0
mirror of https://github.com/hufrea/byedpi.git synced 2025-06-30 02:31:15 +00:00

Add missing va_end

This commit is contained in:
ruti 2025-02-24 18:46:35 +03:00
parent 8825609f22
commit 90d8cd7b7a

View File

@ -72,6 +72,7 @@ static int unie(int e)
va_list args;
va_start(args, str);
vfprintf(stderr, str, args);
va_end(args);
}
}
#endif