add Korean translation (Eunju Kim)
updated Russian translation (Yulia Poyarko)
fix filename output in Python exceptions (Nalin Dahyabhai)
+ fix format strings in util/packer.c (Mike Frysinger)
v2.8.15 allow building of Python extension outside source folder (Jan Dittberner)
fix type on Python extension's trove classifier
reflect license change discussion that was never actually implemented in the repository and update to LGPL
if (!buffer[0])
{
- fprintf(stderr, "skipping line: %u\n", readed);
+ fprintf(stderr, "skipping line: %lu\n", readed);
continue;
}
if (PutPW(pwp, buffer))
{
- fprintf(stderr, "error: PutPW '%s' line %uy\n", buffer, readed);
+ fprintf(stderr, "error: PutPW '%s' line %luy\n", buffer, readed);
}
wrote++;
PWClose(pwp);
- printf("%u %u\n", readed, wrote);
+ printf("%lu %lu\n", readed, wrote);
return (0);
}