# HG changeset patch # User William Astle # Date 1360129174 25200 # Node ID 8dd8c3bdca7c5dd186c8f08197062e5c28650c65 # Parent 7de7b14ebaee403f7486dbf3a33c795df325291f Fix stupid error with ' vs " handling os9 edition Thanks to David Ladd 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. diff -r 7de7b14ebaee -r 8dd8c3bdca7c lwlink/link.c --- 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++;