aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2013-04-15 09:15:35 +0300
committerPetri Lehtinen <petri@digip.org>2013-04-15 09:15:35 +0300
commit70232676f7a2d24a55d156badf8ee15f7f84a97e (patch)
tree8c0395a0d949e828b5837ee3b46c39e6f5cd4fae
parent0ccd2c7715f1112dad2a7d5ae9a95bb9a96e7d43 (diff)
parent257a7160734854b6ceaea04096b4dd9410fe9645 (diff)
downloadjansson-70232676f7a2d24a55d156badf8ee15f7f84a97e.zip
jansson-70232676f7a2d24a55d156badf8ee15f7f84a97e.tar.gz
jansson-70232676f7a2d24a55d156badf8ee15f7f84a97e.tar.bz2
Merge branch '2.4'
-rw-r--r--test/suites/api/test_dump.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/suites/api/test_dump.c b/test/suites/api/test_dump.c
index 07fac7f..bc34547 100644
--- a/test/suites/api/test_dump.c
+++ b/test/suites/api/test_dump.c
@@ -9,8 +9,11 @@
#include <string.h>
#include "util.h"
-static int encode_null_callback(char *buffer, size_t size, void *data)
+static int encode_null_callback(const char *buffer, size_t size, void *data)
{
+ (void)buffer;
+ (void)size;
+ (void)data;
return 0;
}