From 128d3079635ae62786a13adc435d0063a64a014a Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 19 Jun 2020 17:20:41 +0200 Subject: patch 8.2.1010: build failure in libvterm with debug enabled Problem: Build failure in libvterm with debug enabled. (John Little) Solution: Use "->" instead of ".". --- src/libvterm/src/state.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/libvterm/src/state.c b/src/libvterm/src/state.c index dd25726db1..c9a988caa5 100644 --- a/src/libvterm/src/state.c +++ b/src/libvterm/src/state.c @@ -291,7 +291,7 @@ static int on_text(const char bytes[], size_t len, void *user) if (state->pos.row >= state->rows) { - DEBUG_LOG2("libvterm: on_text() pos.row %d out of range (rows = %d)\n", state->pos.row, state.rows); + DEBUG_LOG2("libvterm: on_text() pos.row %d out of range (rows = %d)\n", state->pos.row, state->rows); return 0; } // We'll have at most len codepoints, plus one from a previous incomplete diff --git a/src/version.c b/src/version.c index c702791a12..f1e274ad0a 100644 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1010, /**/ 1009, /**/ -- cgit v1.2.3