URI:
       tvi: fix two compiler warnings on clang ver. 1000.11.45.5 - neatvi - [fork] simple vi-type editor with UTF-8 support
  HTML git clone git://src.adamsgaard.dk/neatvi
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
   DIR commit fb4a84a4c678277646bd1873f1d75abd6b527ab7
   DIR parent 646929726b8bd1971559744ad1cea6c564312e53
  HTML Author: Joe Loughry <joe.loughry@gmail.com>
       Date:   Sun, 17 Feb 2019 14:36:35 -0700
       
       vi: fix two compiler warnings on clang ver. 1000.11.45.5
       
       Diffstat:
         M vi.c                                |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/vi.c b/vi.c
       t@@ -72,7 +72,7 @@ static void vi_drawagain(int xcol, int lineonly)
        /* update the screen */
        static void vi_drawupdate(int xcol, int otop)
        {
       -        int i;
       +        int i = 0;
                if (otop != xtop) {
                        term_record();
                        term_pos(0, 0);
       t@@ -1302,7 +1302,7 @@ static void vi(void)
                                }
                                cmd = term_cmd(&n);
                                if (strchr("!<>ACDIJOPRSXYacdioprsxy~", c) ||
       -                                        c == 'g' && strchr("uU~", k)) {
       +                                        (c == 'g' && strchr("uU~", k))) {
                                        if (n < sizeof(rep_cmd)) {
                                                memcpy(rep_cmd, cmd, n);
                                                rep_len = n;