diff options
Diffstat (limited to 'nss')
-rw-r--r-- | nss/getXXent_r.c | 2 | ||||
-rw-r--r-- | nss/nss_db/db-XXX.c | 2 | ||||
-rw-r--r-- | nss/nss_files/files-XXX.c | 2 | ||||
-rw-r--r-- | nss/nsswitch.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/nss/getXXent_r.c b/nss/getXXent_r.c index a4327c81af..620eebd1f7 100644 --- a/nss/getXXent_r.c +++ b/nss/getXXent_r.c @@ -94,7 +94,7 @@ static service_user *nip; static service_user *startp; /* Protect above variable against multiple uses at the same time. */ -__libc_lock_define_initialized (static, lock); +__libc_lock_define_initialized (static, lock) /* The lookup function for the first entry of this service. */ extern int DB_LOOKUP_FCT (service_user **nip, const char *name, void **fctp); diff --git a/nss/nss_db/db-XXX.c b/nss/nss_db/db-XXX.c index 3f6f35d7ec..792dc5cea9 100644 --- a/nss/nss_db/db-XXX.c +++ b/nss/nss_db/db-XXX.c @@ -47,7 +47,7 @@ Cambridge, MA 02139, USA. */ #endif /* Locks the static variables in this file. */ -__libc_lock_define_initialized (static, lock); +__libc_lock_define_initialized (static, lock) /* Maintenance of the shared handle open on the database. */ diff --git a/nss/nss_files/files-XXX.c b/nss/nss_files/files-XXX.c index 80efd294a9..da4ad1f2a5 100644 --- a/nss/nss_files/files-XXX.c +++ b/nss/nss_files/files-XXX.c @@ -49,7 +49,7 @@ Cambridge, MA 02139, USA. */ #endif /* Locks the static variables in this file. */ -__libc_lock_define_initialized (static, lock); +__libc_lock_define_initialized (static, lock) /* Maintenance of the shared stream open on the database file. */ diff --git a/nss/nsswitch.c b/nss/nsswitch.c index d259165269..3490594559 100644 --- a/nss/nsswitch.c +++ b/nss/nsswitch.c @@ -39,7 +39,7 @@ static service_library *nss_new_service (name_database *database, const char *name); -__libc_lock_define_initialized (static, lock); +__libc_lock_define_initialized (static, lock) /* Global variable. */ |