* cygcheck.cc (pretty_id): Don't let i become negative. Fix
printf-format.
This commit is contained in:
parent
b64293e62a
commit
eedf24742c
|
@ -1,3 +1,8 @@
|
|||
2004-10-18 Bas van Gompel <cygwin-patch.buzz@bavag.tmfweb.nl>
|
||||
|
||||
* cygcheck.cc (pretty_id): Don't let i become negative. Fix
|
||||
printf-format.
|
||||
|
||||
2004-10-17 Bas van Gompel <cygwin-patch.buzz@bavag.tmfweb.nl>
|
||||
|
||||
* cygcheck.cc (pretty_id): Allocate space for ')' in uid and guid.
|
||||
|
|
|
@ -836,11 +836,11 @@ pretty_id (const char *s, char *cygwin, size_t cyglen)
|
|||
|
||||
printf ("\nOutput from %s (%s)\n", id, s);
|
||||
int n = 80 / (int) ++sz;
|
||||
int i = n ? n - 2 : 0;
|
||||
int i = n > 2 ? n - 2 : 0;
|
||||
sz = -sz;
|
||||
for (char **g = groups; g <= ng; g++)
|
||||
if ((g != ng) && (++i < n))
|
||||
printf ("%*s ", sz, *g);
|
||||
printf ("%*s", sz, *g);
|
||||
else
|
||||
{
|
||||
puts (*g);
|
||||
|
|
Loading…
Reference in New Issue