random style fixes

This commit is contained in:
Denis Vlasenko
2006-10-03 19:02:20 +00:00
parent 6edaddec02
commit cf94446af7
4 changed files with 20 additions and 18 deletions

View File

@@ -34,7 +34,7 @@ char * bb_getgrgid(char *group, long gid, int bufsize)
{
struct group *mygroup = getgrgid(gid);
return bb_getug(group, (mygroup) ?
return bb_getug(group, (mygroup) ?
mygroup->gr_name : (char *)mygroup, gid, bufsize, 'g');
}
#endif /* L_bb_getgrgid */