From 25b02d709fcde653b5a27f35e226427d6eb1705a Mon Sep 17 00:00:00 2001 From: Marco Paland Date: Fri, 15 Jun 2018 12:25:43 +0200 Subject: fix(test_suite): fix vsnprintf va_arg mock test case for x64 --- test/test_suite.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/test_suite.cpp b/test/test_suite.cpp index c2fd0f2..1251212 100644 --- a/test/test_suite.cpp +++ b/test/test_suite.cpp @@ -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); -- cgit v1.2.3