aboutsummaryrefslogtreecommitdiffstats
path: root/awkgram.y
diff options
context:
space:
mode:
authorAndrew J. Schorr <aschorr@telemetry-investments.com>2014-08-03 14:44:09 -0400
committerAndrew J. Schorr <aschorr@telemetry-investments.com>2014-08-03 14:44:09 -0400
commit873f410df729f1c7bbe2d3a8b95b41c9706d700d (patch)
tree4279d5ac2d9ad088dbe14a53fb1ee79e0beb2d18 /awkgram.y
parente02ffe43c534493a40e9b9403cd91a6357514c85 (diff)
downloadegawk-873f410df729f1c7bbe2d3a8b95b41c9706d700d.tar.gz
egawk-873f410df729f1c7bbe2d3a8b95b41c9706d700d.tar.bz2
egawk-873f410df729f1c7bbe2d3a8b95b41c9706d700d.zip
Minor patch to get --profile to work in -M (MPFR) mode.
Diffstat (limited to 'awkgram.y')
-rw-r--r--awkgram.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/awkgram.y b/awkgram.y
index 1a199469..53a218a2 100644
--- a/awkgram.y
+++ b/awkgram.y
@@ -1944,7 +1944,7 @@ getfname(NODE *(*fptr)(int))
j = sizeof(tokentab) / sizeof(tokentab[0]);
/* linear search, no other way to do it */
for (i = 0; i < j; i++)
- if (tokentab[i].ptr == fptr)
+ if (tokentab[i].ptr == fptr || tokentab[i].ptr2 == fptr)
return tokentab[i].operator;
return NULL;