commit 399d9bfb831105e23282795dc9ca4bbab9a2ecb9
parent d66d6c5fb4f67b9fd75bedab1a2ca34f6bf98ff3
Author: Antoni Sawicki <tenox@google.com>
Date: Wed, 1 May 2019 18:33:44 -0700
tab2scp
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ttyplot.c b/ttyplot.c
@@ -281,11 +281,11 @@ int main(int argc, char *argv[]) {
mvprintw(height-1, width-sizeof(verstring)/sizeof(char), verstring);
lt=localtime(&t1);
- #ifdef __sun
+ #ifdef __sun
asctime_r(lt, ls, sizeof(ls));
- #else
+ #else
asctime_r(lt, ls);
- #endif
+ #endif
mvprintw(height-2, width-strlen(ls), "%s", ls);
#ifdef _AIX