X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=expr.c;h=e597257007880205a9032aea705581dee55e31cd;hp=5a9155c67832c1ee049d899415a0c924b40b4a07;hb=HEAD;hpb=3f937a2ab53c5fa20f5468e59c278da9d8c54b02 diff --git a/expr.c b/expr.c index 5a9155c..e597257 100644 --- a/expr.c +++ b/expr.c @@ -262,7 +262,7 @@ int expr1(void) goto allright; } - return error("cannot open: \"%s\"", string[tok[1]]); + return error("cannot open: \"%s\"", string[*tok]); } allright: @@ -585,7 +585,7 @@ be converted from a linked list into an array). // // Evaluate expression. // If the expression involves only ONE external symbol, the expression is -// UNDEFINED, but it's value includes everything but the symbol value, and +// UNDEFINED, but its value includes everything but the symbol value, and // 'a_esym' is set to the external symbol. // int evexpr(TOKEN * _tk, uint64_t * a_value, WORD * a_attr, SYM ** a_esym)