]> git.sur5r.net Git - cc65/blobdiff - src/cc65/asmlabel.c
Fix 32/64-bit int/pointer casts
[cc65] / src / cc65 / asmlabel.c
index da986c5ff60255a5404b8c98946c0c666dd7c6e1..09aee3b927c4a5ee50eb93f24c69879066f83c95 100644 (file)
@@ -70,9 +70,9 @@ unsigned GetLocalLabel (void)
 
 const char* LocalLabelName (unsigned L)
 /* Make a label name from the given label number. The label name will be
- * created in static storage and overwritten when calling the function
- * again.
- */
+** created in static storage and overwritten when calling the function
+** again.
+*/
 {
     static char Buf[64];
     sprintf (Buf, "L%04X", L);