diff --git a/ChangeLog b/ChangeLog index 97d54c38..d9019015 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-01-05 Nicolas François + + * src/useradd.c: Fix find_new_gid() prototype. Add a void + parameter. + 2008-01-05 Nicolas François * lib/prototypes.h: Add the dolastlog() prototype. diff --git a/src/useradd.c b/src/useradd.c index 5ae62d6d..4f9bc102 100644 --- a/src/useradd.c +++ b/src/useradd.c @@ -871,7 +871,7 @@ static void find_new_uid (void) * find_new_gid() locates the next highest unused GID in the group * file */ -static void find_new_gid () +static void find_new_gid (void) { const struct group *grp; gid_t gid_min, gid_max;