diff options
author | David S. Miller <davem@nuts.ninka.net> | 2003-03-22 08:01:27 -0800 |
---|---|---|
committer | David S. Miller <davem@nuts.ninka.net> | 2003-03-22 08:01:27 -0800 |
commit | ab24f7cc0c77c07d30a8fedad80ca4c0e387a225 (patch) | |
tree | c9eeca78d0876b96b85c0d7960af63ec7fdd4b46 /include/linux/console_struct.h | |
parent | 0d75a96acd31e0635fa850af2c49ede049bd977b (diff) |
[VT]: vc_pos needs to be unsigned long.
Diffstat (limited to 'include/linux/console_struct.h')
-rw-r--r-- | include/linux/console_struct.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/console_struct.h b/include/linux/console_struct.h index c18bd026a270..df81e37a9884 100644 --- a/include/linux/console_struct.h +++ b/include/linux/console_struct.h @@ -37,7 +37,7 @@ struct vc_data { unsigned short vc_s_complement_mask; /* Saved mouse pointer mask */ unsigned int vc_x, vc_y; /* Cursor position */ unsigned int vc_saved_x, vc_saved_y; - unsigned int vc_pos; /* Cursor address */ + unsigned long vc_pos; /* Cursor address */ /* fonts */ unsigned short vc_hi_font_mask; /* [#] Attribute set for upper 256 chars of font or 0 if not supported */ struct console_font_op vc_font; /* Current VC font set */ |