aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgpelisset <82290797+gpelisset@users.noreply.github.com>2022-08-24 10:41:34 +0200
committerGitHub <noreply@github.com>2022-08-24 11:41:34 +0300
commitf7c8148865033ff0e851c31da026bf10f250251e (patch)
treea228f33e15f155907aa13ef8629270f51bccee0b
parentb92d8cecd132ce8e02a373e28dd42e6be34d3d59 (diff)
downloadone-true-awk-f7c8148865033ff0e851c31da026bf10f250251e.tar.gz
Fixed typo (#151)
-rw-r--r--lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lex.c b/lex.c
index 9d1ae06..d7b2d03 100644
--- a/lex.c
+++ b/lex.c
@@ -525,7 +525,7 @@ int regexpr(void)
char *bp;
if (buf == NULL && (buf = (char *) malloc(bufsz)) == NULL)
- FATAL("out of space for rex expr");
+ FATAL("out of space for reg expr");
bp = buf;
for ( ; (c = input()) != '/' && c != 0; ) {
if (!adjbuf(&buf, &bufsz, bp-buf+3, 500, &bp, "regexpr"))