aboutsummaryrefslogtreecommitdiffstats
path: root/src/print.c
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2012-02-10 15:20:37 +0200
committerTimo Teräs <timo.teras@iki.fi>2012-02-10 15:20:57 +0200
commitdd923ed06525d4f927c472be89259637916fd540 (patch)
tree368413c03c5881a4f6eee988f4d46f8b389ce9b2 /src/print.c
parent073df81973907469a0e5dfb1a064201df8e05b80 (diff)
downloadaports-dd923ed06525d4f927c472be89259637916fd540.tar.bz2
aports-dd923ed06525d4f927c472be89259637916fd540.tar.xz
print: minimum screen width of 50
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/print.c b/src/print.c
index 92c1b05492..b47d8d7e78 100644
--- a/src/print.c
+++ b/src/print.c
@@ -31,8 +31,9 @@ int apk_get_screen_width(void)
struct winsize w;
if (apk_screen_width == 0) {
- apk_screen_width = 70;
- if (ioctl(STDERR_FILENO,TIOCGWINSZ, &w) == 0)
+ apk_screen_width = 50;
+ if (ioctl(STDERR_FILENO, TIOCGWINSZ, &w) == 0 &&
+ w.ws_col > 50)
apk_screen_width = w.ws_col;
}