From 4c7ce0cfca45b675f0daf63087f1933d062e8627 Mon Sep 17 00:00:00 2001 From: Ramakrishnan Muthukrishnan Date: Sun, 2 Jan 2022 19:42:28 +0530 Subject: [PATCH] bug fix --- vfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vfo.c b/vfo.c index bad81d3..8cb833e 100644 --- a/vfo.c +++ b/vfo.c @@ -920,7 +920,7 @@ char **draw_vfo_val(char *vfo_str, int step) { int step_index = step; if (step == 6) { - step_index = step - 1; // to account for the dot + step_index = step + 1; // to account for the dot } for (int i = 0; i < l - step_index - 1; i++) { s1[i] = vfo_str[i]; -- 2.45.2