1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

* grp/initgroups.c (internal_getgrouplist): Remove unnecessary

test introduced in patch for bz #661.
	(getgrouplist): Simplify code a bit.
This commit is contained in:
Ulrich Drepper
2006-08-03 15:26:02 +00:00
parent 9c06eb66b5
commit 6c215a8d6c
3 changed files with 19 additions and 18 deletions

View File

@ -404,7 +404,10 @@ __printf_fphex (FILE *fp,
{
exponent -= 4;
if (exponent <= 0)
expnegative = 0;
{
exponent = -exponent;
expnegative = 0;
}
}
else
exponent += 4;