* as/z80/z80mch.c: fixed bug #1704376: missing as-z80 errors
[fw/sdcc] / support / regression / tests / bug-524209.c
index fbb0cc45cb2512116f89397364a6ee166b23c3c8..67d2659e73d87ec16a642c37d4f78c64f06cd57c 100644 (file)
@@ -22,7 +22,7 @@ typedef struct _StringBuffer
 
 void _scan(StringBuffer *pSB)
 {
-  UNUSED(*pSB);
+  UNUSED(pSB);
 }
 
 void checkCast(void *pIn)
@@ -31,3 +31,6 @@ void checkCast(void *pIn)
   _scan((StringBuffer *)p);
 }
 
+void testBug(void)
+{
+}