struct exec_closure: make rows and cols int, not short

There's no real space saved by using short and using int avoids a
few casts.
This commit is contained in:
Todd C. Miller
2023-07-07 15:42:53 -06:00
parent 548e3e3125
commit 92860c717d
3 changed files with 11 additions and 11 deletions

View File

@@ -76,8 +76,8 @@ struct exec_closure {
pid_t monitor_pid;
pid_t cmnd_pid;
pid_t ppgrp;
short rows;
short cols;
int rows;
int cols;
bool foreground;
bool term_raw;
};