Skip to content

Commit

Permalink
sh.err.c: recursion/nest
Browse files Browse the repository at this point in the history
  • Loading branch information
Krush206 committed Jun 3, 2024
1 parent 39e295e commit b41fe1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sh.err.c
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ errinit(void)
elst[ERR_RETURN] = CSAVS(1, 141, "Not in a declaration");
elst[ERR_FUNCBEGIN] = CSAVS(1, 142, "Function name must begin with a letter");
elst[ERR_FUNCALNUM] = CSAVS(1, 143, "Function name must contain alphanumeric characters");
elst[ERR_RECURSION] = CSAVS(1, 144, "Recursion too deep");
elst[ERR_RECURSION] = CSAVS(1, 144, "Too deep a recursion or nest");
}

/* Cleanup data. */
Expand Down

0 comments on commit b41fe1e

Please sign in to comment.