confgs/z80sim/src/z80_serial.c: Fix uart_dev_t initializer: pollfds is a array of pointers and, hence, the NULL initializer must be included in braces. Noted by Paul Osmialowski in Issue #160.
This commit is contained in:
parent
eda7f5f379
commit
8b86f937be
@ -129,7 +129,7 @@ static uart_dev_t g_uartport =
|
||||
},
|
||||
&g_uart_ops, /* ops */
|
||||
NULL, /* priv */
|
||||
NULL /* pollfds */
|
||||
{ NULL } /* pollfds */
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
|
Loading…
Reference in New Issue
Block a user