summaryrefslogtreecommitdiff
path: root/pkgtools/pkg_install/files/info
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2007-04-20 14:25:13 +0000
committerjoerg <joerg@pkgsrc.org>2007-04-20 14:25:13 +0000
commitbbe0e4e1ae5413e347dae63d9db09bea321f0cc7 (patch)
tree601ed1ae4b3b1bd3cf595ad6f8a2397759916aee /pkgtools/pkg_install/files/info
parentc3b2d4b973bd8ea52ba30f080e0e11aa484e20cd (diff)
downloadpkgsrc-bbe0e4e1ae5413e347dae63d9db09bea321f0cc7.tar.gz
Sync with src: PRIu64 -> MY_PRIu64 + fallback value of PRIu64.
Diffstat (limited to 'pkgtools/pkg_install/files/info')
-rw-r--r--pkgtools/pkg_install/files/info/show.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/pkg_install/files/info/show.c b/pkgtools/pkg_install/files/info/show.c
index cb4000025f2..9c84a0db0f5 100644
--- a/pkgtools/pkg_install/files/info/show.c
+++ b/pkgtools/pkg_install/files/info/show.c
@@ -1,4 +1,4 @@
-/* $NetBSD: show.c,v 1.13 2007/04/20 13:48:16 tnn Exp $ */
+/* $NetBSD: show.c,v 1.14 2007/04/20 14:25:13 joerg Exp $ */
#if HAVE_CONFIG_H
#include "config.h"
@@ -11,7 +11,7 @@
#if 0
static const char *rcsid = "from FreeBSD Id: show.c,v 1.11 1997/10/08 07:47:38 charnier Exp";
#else
-__RCSID("$NetBSD: show.c,v 1.13 2007/04/20 13:48:16 tnn Exp $");
+__RCSID("$NetBSD: show.c,v 1.14 2007/04/20 14:25:13 joerg Exp $");
#endif
#endif
@@ -394,7 +394,7 @@ show_summary(package_t *plist, const char *binpkgfile)
var_copy_list(BUILD_INFO_FNAME, bi_vars);
if (binpkgfile != NULL && stat(binpkgfile, &st) == 0) {
- printf("FILE_SIZE=%" PRIu64 "\n", (uint64_t)st.st_size);
+ printf("FILE_SIZE=%" MY_PRIu64 "\n", (uint64_t)st.st_size);
/* XXX: DIGETS */
}