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:
Gregory Nutt 2019-08-01 10:06:46 -06:00
parent eda7f5f379
commit 8b86f937be

View File

@ -129,7 +129,7 @@ static uart_dev_t g_uartport =
},
&g_uart_ops, /* ops */
NULL, /* priv */
NULL /* pollfds */
{ NULL } /* pollfds */
};
/****************************************************************************