diff options
Diffstat (limited to '')
-rw-r--r-- | src/screen.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screen.h b/src/screen.h index 2a38c07a9..91ee26447 100644 --- a/src/screen.h +++ b/src/screen.h @@ -15,7 +15,7 @@ struct window { WINDOW *w; - int rows, cols; + unsigned rows, cols; }; typedef struct screen { @@ -30,7 +30,7 @@ typedef struct screen { command_t last_cmd; - int cols, rows; + unsigned cols, rows; int mode; |