Skip to content

Commit

Permalink
tab2scp
Browse files Browse the repository at this point in the history
  • Loading branch information
tenox7 committed May 2, 2019
1 parent d66d6c5 commit 399d9bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ttyplot.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 399d9bf

Please sign in to comment.