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:
@@ -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;
|
||||
};
|
||||
|
Reference in New Issue
Block a user