match original indentation - tty-clock - port of tty-clock to OpenBSD, with pledge/unveil added as goodie.
 (HTM) git clone https://git.drkhsh.at/tty-clock.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit c1490a11226858bd28ccb7c25602d01bec17933a
 (DIR) parent e844687f88c6611efb9a0e27c5d123501f123ecf
 (HTM) Author: Wessels <dwessels@verisign.com>
       Date:   Mon,  2 Mar 2015 14:57:48 -0800
       
       match original indentation
       
       Diffstat:
         M ttyclock.c                          |      10 +++++-----
       
       1 file changed, 5 insertions(+), 5 deletions(-)
       ---
 (DIR) diff --git a/ttyclock.c b/ttyclock.c
       @@ -255,12 +255,12 @@ draw_clock(void)
             draw_number(ttyclock->date.hour[1], 1, 8);
             chtype dotcolor = COLOR_PAIR(1);
             if (ttyclock->option.blink && time(NULL) % 2 == 0)
       -        dotcolor = COLOR_PAIR(2);
       +          dotcolor = COLOR_PAIR(2);
        
       -       /* 2 dot for number separation */
       -       wbkgdset(ttyclock->framewin, dotcolor);
       -       mvwaddstr(ttyclock->framewin, 2, 16, "  ");
       -       mvwaddstr(ttyclock->framewin, 4, 16, "  ");
       +     /* 2 dot for number separation */
       +     wbkgdset(ttyclock->framewin, dotcolor);
       +     mvwaddstr(ttyclock->framewin, 2, 16, "  ");
       +     mvwaddstr(ttyclock->framewin, 4, 16, "  ");
        
             /* Draw minute numbers */
             draw_number(ttyclock->date.minute[0], 1, 20);