diff options
Diffstat (limited to 'pico')
-rw-r--r-- | pico/estruct.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pico/estruct.h b/pico/estruct.h index 128ccaff..2d0f650c 100644 --- a/pico/estruct.h +++ b/pico/estruct.h @@ -187,8 +187,8 @@ typedef struct WINDOW { int w_marko; /* Byte offset for "mark" */ struct LINE *w_imarkp; /* INTERNAL Line with "mark" */ int w_imarko; /* INTERNAL "mark" byte offset */ - signed char w_toprow; /* Origin 0 top row of window */ - signed char w_ntrows; /* # of rows of text in window */ + int w_toprow; /* Origin 0 top row of window */ + int w_ntrows; /* # of rows of text in window */ char w_force; /* If NZ, forcing row. */ char w_flag; /* Flags. */ } WINDOW; |