1
0
Fork 0

fix(test_suite): fix vsnprintf va_arg mock test case for x64

development
Marco Paland 7 years ago
parent 7616d6f5e7
commit 25b02d709f

@ -88,9 +88,9 @@ TEST_CASE("vsnprintf", "[]" ) {
// mock argument list
const struct tag_args {
int a;
int b;
char* s;
intptr_t a;
intptr_t b;
char* s;
} args = { -1, -1000, "test" };
test::vsnprintf(buffer, 100U, "%d %d %s", (char*)&args);

Loading…
Cancel
Save