|
From: <set...@us...> - 2006-04-22 20:44:31
|
Revision: 1323 Author: sethdill Date: 2006-04-22 13:44:25 -0700 (Sat, 22 Apr 2006) ViewCVS: http://svn.sourceforge.net/frontierkernel/?rev=1323&view=rev Log Message: ----------- Minor tweak. Removed some extra parens. Modified Paths: -------------- Frontier/trunk/Common/source/langstartup.c Modified: Frontier/trunk/Common/source/langstartup.c =================================================================== --- Frontier/trunk/Common/source/langstartup.c 2006-04-22 19:00:18 UTC (rev 1322) +++ Frontier/trunk/Common/source/langstartup.c 2006-04-22 20:44:25 UTC (rev 1323) @@ -699,7 +699,7 @@ tyvaluetype type; bigstring bs; - if (!tablenewsystemtable (langtable, (ptrstring) ("\x09" "constants"), &hconsttable)) + if (!tablenewsystemtable (langtable, (ptrstring) "\x09" "constants", &hconsttable)) return (false); pushhashtable (hconsttable); /*converted to constants by the scanner*/ @@ -757,7 +757,7 @@ lastword (bs, chspace, bs); - pushstring ((ptrstring) ("\x04Type"), bs); + pushstring ((ptrstring) "\x04Type", bs); addtype (bs, type); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |