RPM Package Manager, CVS Repository http://rpm5.org/cvs/ ____________________________________________________________________________
Server: rpm5.org Name: Jeff Johnson Root: /v/rpm/cvs Email: j...@rpm5.org Module: rpm Date: 18-Dec-2008 00:34:09 Branch: HEAD Handle: 2008121723340900 Modified files: rpm/tools rpmdigest.c Log: - jbj: fix with casts instead of format strings. a private fetish ... Summary: Revision Changes Path 2.13 +2 -2 rpm/tools/rpmdigest.c ____________________________________________________________________________ patch -p0 <<'@@ .' Index: rpm/tools/rpmdigest.c ============================================================================ $ cvs diff -u -r2.12 -r2.13 rpmdigest.c --- rpm/tools/rpmdigest.c 17 Dec 2008 23:30:15 -0000 2.12 +++ rpm/tools/rpmdigest.c 17 Dec 2008 23:34:09 -0000 2.13 @@ -968,8 +968,8 @@ exit: if (dc->nfailed) - fprintf(stderr, "%s: WARNING: %zu of %zd computed checksums did NOT match\n", - __progname, dc->nfailed, dc->ncomputed); + fprintf(stderr, "%s: WARNING: %u of %u computed checksums did NOT match\n", + __progname, (unsigned) dc->nfailed, (unsigned) dc->ncomputed); if (dc->ofd) { /* Print the output spewage digest for 0install format manifests. */ @@ . ______________________________________________________________________ RPM Package Manager http://rpm5.org CVS Sources Repository rpm-cvs@rpm5.org