summaryrefslogtreecommitdiff
path: root/api_test
diff options
context:
space:
mode:
Diffstat (limited to 'api_test')
-rw-r--r--api_test/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/api_test/main.c b/api_test/main.c
index 25521d0..c975060 100644
--- a/api_test/main.c
+++ b/api_test/main.c
@@ -294,10 +294,10 @@ node_check(test_batch_runner *runner) {
}
static int
-S_handler(cmark_node *node, int entering, void *state)
+S_handler(cmark_node *node, cmark_event_type ev_type, void *state)
{
int *textnodes = state;
- if (entering) {
+ if (ev_type == CMARK_EVENT_ENTER) {
if (node->type == CMARK_NODE_TEXT) {
*textnodes += 1;
}