From 95aece012aed0ac544c6fb7629f06f7f33648f63 Mon Sep 17 00:00:00 2001 From: SPRESENSE <41312067+SPRESENSE@users.noreply.github.com> Date: Sun, 4 Jul 2021 09:13:18 +0900 Subject: [PATCH] graphics/pdcurs34: Fix compile error Fix a compile error when CONFIG_SYSTEM_TERMCURSES=y. --- graphics/pdcurs34/nuttx/pdcdisp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/pdcurs34/nuttx/pdcdisp.c b/graphics/pdcurs34/nuttx/pdcdisp.c index d35dbb752..12d52276d 100644 --- a/graphics/pdcurs34/nuttx/pdcdisp.c +++ b/graphics/pdcurs34/nuttx/pdcdisp.c @@ -838,7 +838,7 @@ static void PDC_transform_line_term(FAR SCREEN *s, int lineno, int x, /* Move to the specified line / col */ - PDC_gotoyx_term(sp, lineno, x); + PDC_gotoyx_term(s, lineno, x); /* Loop through all characters to be displayed */