1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 20:29:34 +00:00

Keep GCC from complaining about 'List' may be used uninitialized in this function.

This commit is contained in:
Oliver Schmidt 2017-05-17 19:39:02 +02:00
parent 298dda0e71
commit f151142e6a

View File

@ -1388,7 +1388,7 @@ static void DoList (void)
/* Enable/disable the listing */
{
/* Get the setting */
unsigned char List;
unsigned char List = 0;
SetBoolOption (&List);
/* Manage the counter */