summaryrefslogtreecommitdiff
path: root/tests/pb
diff options
context:
space:
mode:
authorHATATANI Shinta <gamaguchi@gmail.com>2016-11-13 13:42:57 +0900
committerHATATANI Shinta <gamaguchi@gmail.com>2016-11-13 13:42:57 +0900
commit1b4fc46f87636ac3b9d6a8690acaa7e1537a0977 (patch)
treeccd6d8c365c9c8d8bb9192770dc7c23a465557a1 /tests/pb
parent35e174bf0e83aa199a062db960cd14236ca67c0d (diff)
Fix glibc coupling in test
Diffstat (limited to 'tests/pb')
-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