Declare file local functions static

This commit is contained in:
Christian Göttsche
2022-01-03 12:41:13 +01:00
parent eccf1c569c
commit f84b8530c5
7 changed files with 7 additions and 7 deletions

View File

@ -29,7 +29,7 @@ bool nss_is_initialized() {
return atomic_load(&nss_init_completed);
}
void nss_exit() {
static void nss_exit() {
if (nss_is_initialized() && subid_nss) {
dlclose(subid_nss->handle);
free(subid_nss);