diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-06-19 17:20:41 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-06-19 17:20:41 +0200 |
commit | 128d3079635ae62786a13adc435d0063a64a014a (patch) | |
tree | 1bfb9ef0e0bc8d651d098e0064f9b87209c504b6 /src/libvterm/src | |
parent | c5b1c20b6b1968873ea31edac1db659773b3b93d (diff) | |
download | vim-git-128d3079635ae62786a13adc435d0063a64a014a.tar.gz |
patch 8.2.1010: build failure in libvterm with debug enabledv8.2.1010
Problem: Build failure in libvterm with debug enabled. (John Little)
Solution: Use "->" instead of ".".
Diffstat (limited to 'src/libvterm/src')
-rw-r--r-- | src/libvterm/src/state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libvterm/src/state.c b/src/libvterm/src/state.c index dd25726db..c9a988caa 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 |