`dired_pos += width; dired_pos++;' rather than one,
`dired_pos += width + 1;' since the latter could conceivably overflow.
(format_group): Likewise.
printf ("%-*s ", width, name);
else
printf ("%*lu ", width, (unsigned long int) u);
- dired_pos += width + 1;
+ dired_pos += width;
+ dired_pos++;
}
/* Likewise, for groups. */
printf ("%-*s ", width, name);
else
printf ("%*lu ", width, (unsigned long int) g);
- dired_pos += width + 1;
+ dired_pos += width;
+ dired_pos++;
}
/* Return the number of bytes that format_user will print. */