changeset 263:8dd8c3bdca7c

Fix stupid error with ' vs " handling os9 edition Thanks to David Ladd <dladd@realmspire.com> for the bug report and running some debugging to find the crash. Strings in C must be enclosed in ", not ' which is what was actually in the source code. I suppose that's what comes from coding while 9 parts asleep.
author William Astle <lost@l-w.ca>
date Tue, 05 Feb 2013 22:39:34 -0700
parents 7de7b14ebaee
children 346966cffeef
files lwlink/link.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lwlink/link.c	Mon Feb 04 21:03:59 2013 -0700
+++ b/lwlink/link.c	Tue Feb 05 22:39:34 2013 -0700
@@ -781,7 +781,7 @@
 		{
 			linkscript.stacksize += sym -> offset;
 		}
-		else if (!strcasecmp(sm, 'edition'))
+		else if (!strcasecmp(sm, "edition"))
 		{
 			linkscript.edition = sym -> offset;
 			st -> edseen++;