| 4186 | /* Likewise, for groups. */ |
| 4187 | |
| 4188 | static void |
| 4189 | format_group (gid_t g, int width, bool stat_ok) |
| 4190 | { |
| 4191 | format_user_or_group (! stat_ok ? "?" : |
| 4192 | (numeric_ids ? NULL : getgroup (g)), g, width); |
| 4193 | } |
| 4194 | |
| 4195 | /* Return the number of columns that format_user_or_group will print, |
| 4196 | or -1 if unknown. */ |
no test coverage detected