diff options
Diffstat (limited to 'sysdeps/posix/cuserid.c')
-rw-r--r-- | sysdeps/posix/cuserid.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdeps/posix/cuserid.c b/sysdeps/posix/cuserid.c index acdd20cd5e..d89e34edd0 100644 --- a/sysdeps/posix/cuserid.c +++ b/sysdeps/posix/cuserid.c @@ -25,8 +25,7 @@ If S is not NULL, it points to a buffer of at least L_cuserid bytes into which the name is copied; otherwise, a static buffer is used. */ char * -cuserid (s) - char *s; +cuserid (char *s) { static char name[L_cuserid]; char buf[NSS_BUFLEN_PASSWD]; |