diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2002-10-04 10:23:00 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2002-10-04 10:23:00 +0000 |
commit | 60633629aa82a00a996f7ffcc17f2e385d33a71e (patch) | |
tree | 3725bec1f958ef59fbd08c574d9719cb3d5e5634 /hurd | |
parent | e8800e674058ea33a8d43e5976277a18b8102233 (diff) |
hurd/
2002-10-04 Marcus Brinkmann <marcus@gnu.org>
* console.h (struct cons_display): Doc fix.
libcons/
2002-10-04 Marcus Brinkmann <marcus@gnu.org>
* vcons-open.c (cons_vcons_open): Add casts to silence gcc
warning.
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/ChangeLog | 4 | ||||
-rw-r--r-- | hurd/console.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/hurd/ChangeLog b/hurd/ChangeLog index 9cc4999f..53dfab8e 100644 --- a/hurd/ChangeLog +++ b/hurd/ChangeLog @@ -1,3 +1,7 @@ +2002-10-04 Marcus Brinkmann <marcus@gnu.org> + + * console.h (struct cons_display): Doc fix. + 2002-09-18 Marcus Brinkmann <marcus@gnu.org> * console.h (struct cons_display): Add a new flag diff --git a/hurd/console.h b/hurd/console.h index 11a40dfc..30829776 100644 --- a/hurd/console.h +++ b/hurd/console.h @@ -119,7 +119,7 @@ struct cons_display preceeding CUR_LINE. */ uint32_t height; /* Number of lines in visible area following (and including) CUR_LINE. */ - uint32_t matrix; /* Index (in wchar_t) of the beginning of + uint32_t matrix; /* Index (in uint32_t) of the beginning of screen matrix in this structure. */ } screen; |