Fix compiler warning for non-TIOCGWINSZ case

Backpatch to 9.5 where the error was introduced.
This commit is contained in:
Andrew Dunstan 2015-09-28 18:42:30 -04:00
parent 8a0aa686f4
commit 0557dc276f
1 changed files with 2 additions and 2 deletions

View File

@ -2747,10 +2747,10 @@ PageOutput(int lines, const printTableOpt *topt)
{
const char *pagerprog;
FILE *pagerpipe;
unsigned short int pager = topt->pager;
int min_lines = topt->pager_min_lines;
#ifdef TIOCGWINSZ
unsigned short int pager = topt->pager;
int min_lines = topt->pager_min_lines;
int result;
struct winsize screen_size;