mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Fix dubious C code construct.
This commit is contained in:
parent
b26244446b
commit
3dc2fe25dc
1 changed files with 1 additions and 1 deletions
|
|
@ -640,7 +640,7 @@ compile_tr(char *p, struct s_tr **py)
|
|||
if (p == NULL)
|
||||
errx(1, "%lu: %s: unterminated transform source string",
|
||||
linenum, fname);
|
||||
p = compile_delimited(--p, new);
|
||||
p = compile_delimited(p - 1, new);
|
||||
if (p == NULL)
|
||||
errx(1, "%lu: %s: unterminated transform target string",
|
||||
linenum, fname);
|
||||
|
|
|
|||
Loading…
Reference in a new issue