2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-22 01:57:43 +00:00

Fix comment typo in parser/lib.c

This commit is contained in:
Christian Boltz 2021-12-05 18:16:53 +01:00
parent 21e5a721ab
commit 854cbae52e
No known key found for this signature in database
GPG Key ID: C6A682EA63C82F1C

View File

@ -183,7 +183,7 @@ int strn_escseq(const char **pos, const char *chrs, size_t n)
if (strchr(chrs, c))
return c;
/* unsupported escap sequence, backup to return that char */
/* unsupported escape sequence, backup to return that char */
pos--;
return -1;
}