libselinux: regex: unify parameter names
Use the same parameter names as in the header `regex.h`. Found by clang-tidy. Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
This commit is contained in:
parent
b1a4603c92
commit
e057080fcc
1 changed files with 2 additions and 2 deletions
|
@ -319,7 +319,7 @@ char const *regex_version(void)
|
|||
}
|
||||
|
||||
int regex_load_mmap(struct mmap_area *mmap_area, struct regex_data **regex,
|
||||
int unused __attribute__((unused)), bool *regex_compiled)
|
||||
int do_load_precompregex __attribute__((unused)), bool *regex_compiled)
|
||||
{
|
||||
int rc;
|
||||
uint32_t entry_len;
|
||||
|
@ -387,7 +387,7 @@ static inline pcre_extra *get_pcre_extra(struct regex_data *regex)
|
|||
}
|
||||
|
||||
int regex_writef(struct regex_data *regex, FILE *fp,
|
||||
int unused __attribute__((unused)))
|
||||
int do_write_precompregex __attribute__((unused)))
|
||||
{
|
||||
int rc;
|
||||
size_t len;
|
||||
|
|
Loading…
Reference in a new issue