n3510i: empty struct problem
Brought to you by:
mrwastl
there is an error with an empty struct in the driver
for n3510i-displays (which makes the driver non-working).
simple fix:
in 'src/serdisp_specific_nokcol.c'
add a
int dummy;
to the struct 'serdisp_nokcol_specific_s'.
like so:
typedef struct serdisp_nokcol_specific_s {
int dummy;
} serdisp_nokcol_specific_t;
(the problem occurs because of a recent change to a
internal _malloc function that checks for 0-byte
mallocs. putting a dummy variable to the struct above
is a quick-fix to make it non-empty)
/mrwastl
Logged In: YES
user_id=939272
problem only exists in versions 1.97.x only!!
/mrwastl