summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/pb/test_decoder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pb/test_decoder.cc b/tests/pb/test_decoder.cc
index d272ea5..49544b2 100644
--- a/tests/pb/test_decoder.cc
+++ b/tests/pb/test_decoder.cc
@@ -111,7 +111,7 @@ using std::string;
void vappendf(string* str, const char *format, va_list args) {
va_list copy;
- __va_copy(copy, args);
+ _upb_va_copy(copy, args);
int count = vsnprintf(NULL, 0, format, args);
if (count >= 0)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback