diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2015-11-24 13:52:26 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2015-11-24 13:52:26 +0100 |
commit | e422ca0f292d08a873deacdbffbb6c6cbd79f88a (patch) | |
tree | 09bd32db472addf4fd7a1f497892f95e1c4cb858 /lib/patmatch.c | |
parent | 5126380beace4e39578f005fe115917b8e8b8ff3 (diff) |
Some consts for function arguments
Patch from Pavel Tvrdik
Diffstat (limited to 'lib/patmatch.c')
-rw-r--r-- | lib/patmatch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/patmatch.c b/lib/patmatch.c index 923e8f86..d2e1e313 100644 --- a/lib/patmatch.c +++ b/lib/patmatch.c @@ -16,7 +16,7 @@ #endif int -MATCH_FUNC_NAME(byte *p, byte *s) +MATCH_FUNC_NAME(const byte *p, const byte *s) { while (*p) { |