Skip to content

Commit

Permalink
fix a bug with va_args
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan-rsm-McKenzie authored and Exit-9B committed Dec 6, 2023
1 parent e186ebb commit c170295
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RE/I/IVirtualMachine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ namespace RE
assert(a_fmt);

std::va_list args1;
va_start(args1, a_fmt);
va_start(args1, a_severity);
std::va_list args2;
va_copy(args2, args1);

Expand Down

0 comments on commit c170295

Please sign in to comment.