mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-07-08 08:40:55 +00:00
[Refs #87: Static Analysis] Call into function that accepts va_args
This commit is contained in:
@@ -238,7 +238,7 @@ namespace FileIO
|
||||
va_list args;
|
||||
va_start(args, fmt);
|
||||
|
||||
int ret = ::fprintf(f, fmt, args);
|
||||
int ret = ::vfprintf(f, fmt, args);
|
||||
|
||||
va_end(args);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user