From: David Given Date: Sat, 31 Dec 2016 00:14:28 +0000 (+0000) Subject: B patch table names shouldn't be in the B symbol namespace. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=c3e1ef1064f1ff682e1cf80bb382a8211a06af61;p=ack.git B patch table names shouldn't be in the B symbol namespace. --- diff --git a/lang/b/compiler/b0.c b/lang/b/compiler/b0.c index 3d87774a2..f42298d33 100644 --- a/lang/b/compiler/b0.c +++ b/lang/b/compiler/b0.c @@ -14,7 +14,7 @@ int contlab = -1; int brklab = -1; int wordsize = 4; -const char* modulename = "b_module_main"; +const char* modulename = "bmodule_main"; int bsymb_part; int code_part; int string_part; @@ -49,7 +49,7 @@ main(int argc, char *argv[]) break; case 'B': - modulename = aprintf("b_module_%s", optarg); + modulename = aprintf("bmodule_%s", optarg); break; case 'i':