aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fzenity/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fzenity/main.c b/src/fzenity/main.c
index 4a0d3abac..9d897b503 100644
--- a/src/fzenity/main.c
+++ b/src/fzenity/main.c
@@ -89,7 +89,7 @@ char *print_line(char *in, int col) {
89 89
90void paginate(char *in) { 90void paginate(char *in) {
91 struct winsize w; 91 struct winsize w;
92 int col = 80; 92 unsigned col = 80;
93 if (ioctl(0, TIOCGWINSZ, &w) == 0) 93 if (ioctl(0, TIOCGWINSZ, &w) == 0)
94 col = w.ws_col; 94 col = w.ws_col;
95 95