Fix build of pkgman on x86_64 by use of B_PRI... define.

This commit is contained in:
Oliver Tappe
2013-08-29 22:44:49 +02:00
parent 03aa9653d0
commit 71046951f8
+2 -2
View File
@@ -116,11 +116,11 @@ ListReposCommand::Execute(int argc, const char* const* argv)
repoCache.Info().Summary().String());
printf("\t\tarch: %s\n", BPackageInfo::kArchitectureNames[
repoCache.Info().Architecture()]);
printf("\t\tpkg-count: %lu\n", repoCache.CountPackages());
printf("\t\tpkg-count: %" B_PRIu32 "\n",
repoCache.CountPackages());
printf("\t\torig-url: %s\n",
repoCache.Info().OriginalBaseURL().String());
printf("\t\torig-prio: %u\n", repoCache.Info().Priority());
} else
printf("\t\t<no repository cache found>\n");
}