Skip to content

Commit

Permalink
unresolved terminal_fallback_width
Browse files Browse the repository at this point in the history
  • Loading branch information
horta committed Jul 8, 2022
1 parent 81f75ee commit 958c96a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/term_win32.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,5 @@ unsigned term_win32_width(void)

fallback:
ncols = tput_cols();
return ncols == -1 ? terminal_fallback_width() : (unsigned)ncols;
return ncols == -1 ? __athr_terminal_fallback_width() : (unsigned)ncols;
}
2 changes: 1 addition & 1 deletion src/terminal.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ unsigned __athr_terminal_width(void)
#elif defined(TERMINAL_IOCTL)
return term_ioctl_width();
#else
return terminal_fallback_width();
return __athr_terminal_fallback_width();
#endif
}

Expand Down

0 comments on commit 958c96a

Please sign in to comment.