diff options
author | Andrew Clayton <andrew@digital-domain.net> | 2022-06-16 02:00:52 +0100 |
---|---|---|
committer | Alejandro Colomar <alx.manpages@gmail.com> | 2022-06-22 00:30:44 +0200 |
commit | 4418f99cd46b17be893b6bd0df56434078e5aad3 (patch) | |
tree | 2a9c47681aac7159b088e8ac5925c900d072b0d3 /src/nxt_string.c | |
parent | 637a2006a6c0da5825dd6b04940e05e2c9feda5d (diff) | |
download | unit-4418f99cd46b17be893b6bd0df56434078e5aad3.tar.gz unit-4418f99cd46b17be893b6bd0df56434078e5aad3.tar.bz2 |
Constified numerous function parameters.
As was pointed out by the cppcheck[0] static code analysis utility we
can mark numerous function parameters as 'const'. This acts as a hint to
the compiler about our intentions and the compiler will tell us when we
deviate from them.
[0]: https://cppcheck.sourceforge.io/
Diffstat (limited to 'src/nxt_string.c')
-rw-r--r-- | src/nxt_string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_string.c b/src/nxt_string.c index b7aef79e..4d89c23c 100644 --- a/src/nxt_string.c +++ b/src/nxt_string.c @@ -338,7 +338,7 @@ nxt_rmemstrn(const u_char *s, const u_char *end, const char *ss, size_t length) size_t -nxt_str_strip(u_char *start, u_char *end) +nxt_str_strip(const u_char *start, u_char *end) { u_char *p; |