From f151142e6a9935f53fb36b5c54d1031572f50d0c Mon Sep 17 00:00:00 2001
From: Oliver Schmidt 
Date: Wed, 17 May 2017 19:39:02 +0200
Subject: [PATCH] Keep GCC from complaining about 'List' may be used
 uninitialized in this function.
---
 src/ca65/pseudo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ca65/pseudo.c b/src/ca65/pseudo.c
index b44c28dd8..f84f21d7f 100644
--- a/src/ca65/pseudo.c
+++ b/src/ca65/pseudo.c
@@ -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 */
-- 
2.39.5