summaryrefslogtreecommitdiff
path: root/tests/test_decoder.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_decoder.c')
-rw-r--r--tests/test_decoder.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_decoder.c b/tests/test_decoder.c
index 0db3bfa..14d0e2d 100644
--- a/tests/test_decoder.c
+++ b/tests/test_decoder.c
@@ -165,6 +165,7 @@ upb_sflow_t startsubmsg(void *closure, upb_value fval) {
}
upb_flow_t endsubmsg(void *closure, upb_value fval) {
+ (void)fval;
buffer_appendf(closure, "} ");
return UPB_CONTINUE;
}
@@ -175,6 +176,7 @@ upb_sflow_t startseq(void *closure, upb_value fval) {
}
upb_flow_t endseq(void *closure, upb_value fval) {
+ (void)fval;
buffer_appendf(closure, "] ");
return UPB_CONTINUE;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback