Re: VT102 emulation code observations -- vt.c (in older kernels console.c)

<[email protected]> Tue, 17 May 2005 03:13:16 -0400
Newsgroups org.kernel.vger.linux-console
Message-ID <000801c55ab0$0421e000$2800000a@pc365dualp2>
CORRECTION: There's a typo in original post.

> #define CURRENT_VCON_DATA_PTR &vc_cons[currcons].d

should be:

#define CURRENT_VCON_DATA_PTR vc_cons[currcons].d

"d" is a pointer to the vcon structure, not the structure itself.