From 104201a6c3c08e780f2757f3e3e525bc5ea7598d Mon Sep 17 00:00:00 2001 From: dcs Date: Wed, 29 Sep 1999 10:58:43 +0000 Subject: [PATCH] Fix world-breaking bug, add $FreeBSD$ tag. This happened to be my first "for real" broken world. I had broken it once before, but nobody noticed, so it didn't count. So, how do I get the "I broke world and all I got was the lousy t-shirt" t-shirt? --- sys/boot/ficl/softwords/softcore.awk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/boot/ficl/softwords/softcore.awk b/sys/boot/ficl/softwords/softcore.awk index 8928db64a75f..f882a56e4d0e 100644 --- a/sys/boot/ficl/softwords/softcore.awk +++ b/sys/boot/ficl/softwords/softcore.awk @@ -1,6 +1,7 @@ #!/usr/bin/awk -f # Convert forth source files to a giant C string # Joe Abley , 12 January 1999 +# $FreeBSD$ BEGIN \ { @@ -91,6 +92,6 @@ END \ printf " \"quit \";\n"; printf "\n\nvoid ficlCompileSoftCore(FICL_VM *pVM)\n"; printf "{\n"; - printf " assert(ficlExec(pVM, softWords, -1) != VM_ERREXIT);\n"; + printf " assert(ficlExec(pVM, softWords) != VM_ERREXIT);\n"; printf "}\n"; }