]> git.sur5r.net Git - cc65/blobdiff - src/ca65/ulabel.c
New module strstack
[cc65] / src / ca65 / ulabel.c
index c63e7e10af07962a309529c5465d60853ec3bb6d..45f1f7da248887d910862c59674dc256307e8fe2 100644 (file)
@@ -7,7 +7,7 @@
 /*                                                                           */
 /*                                                                           */
 /* (C) 2000-2003 Ullrich von Bassewitz                                       */
-/*               Römerstrasse 52                                             */
+/*               Römerstraße 52                                              */
 /*               D-70794 Filderstadt                                         */
 /* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
@@ -135,7 +135,7 @@ ExprNode* ULabRef (int Which)
        }
        if (L == 0) {
            /* Label does not exist */
-           Error (ERR_UNDEFINED_LABEL);
+           Error ("Undefined label");
            /* We must return something valid */
            return GenCurrentPC();
        } else {
@@ -216,7 +216,7 @@ void ULabCheck (void)
     if (ULabLastDef) {
        L = ULabLastDef->Next;
        while (L) {
-           PError (&L->Pos, ERR_UNDEFINED_LABEL);
+           PError (&L->Pos, "Undefined label");
            L = L->Next;
        }
     }