summaryrefslogtreecommitdiffstats
path: root/libraries/pack200
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2018-06-28 23:35:04 +0200
committerPetr Mrázek <peterix@gmail.com>2018-06-28 23:35:04 +0200
commit07f7ec8eefdcc27575a05319ef35662ac5b6993f (patch)
treebcd6640c4df0981244a41367eea115cce8680142 /libraries/pack200
parent7fe94ca7b4aa191b1e79331b16724b7e9cc9f56e (diff)
downloadMultiMC-07f7ec8eefdcc27575a05319ef35662ac5b6993f.tar
MultiMC-07f7ec8eefdcc27575a05319ef35662ac5b6993f.tar.gz
MultiMC-07f7ec8eefdcc27575a05319ef35662ac5b6993f.tar.lz
MultiMC-07f7ec8eefdcc27575a05319ef35662ac5b6993f.tar.xz
MultiMC-07f7ec8eefdcc27575a05319ef35662ac5b6993f.zip
NOISSUE fix some warnings so builds can go further
Diffstat (limited to 'libraries/pack200')
-rw-r--r--libraries/pack200/src/unpack.cpp21
1 files changed, 9 insertions, 12 deletions
diff --git a/libraries/pack200/src/unpack.cpp b/libraries/pack200/src/unpack.cpp
index 55d253b2..92e2c523 100644
--- a/libraries/pack200/src/unpack.cpp
+++ b/libraries/pack200/src/unpack.cpp
@@ -34,13 +34,7 @@
* _LP64 can be explicitly set (used on Linux).
* Solaris compilers will define __sparcv9 or __x86_64 on 64bit compilations.
*/
-#if defined(_LP64) || defined(__sparcv9) || defined(__x86_64)
-#define LONG_LONG_FORMAT "%ld"
-#define LONG_LONG_HEX_FORMAT "%lx"
-#else
-#define LONG_LONG_FORMAT "%lld"
-#define LONG_LONG_HEX_FORMAT "%016llx"
-#endif
+#include <cinttypes>
#include <sys/types.h>
@@ -859,9 +853,9 @@ void unpacker::finish()
{
if (verbose >= 1)
{
- fprintf(stderr, "A total of " LONG_LONG_FORMAT " bytes were read in %d segment(s).\n",
+ fprintf(stderr, "A total of %" PRIu64 " bytes were read in %d segment(s).\n",
(bytes_read_before_reset + bytes_read), segments_read_before_reset + 1);
- fprintf(stderr, "A total of " LONG_LONG_FORMAT " file content bytes were written.\n",
+ fprintf(stderr, "A total of %" PRIu64 " file content bytes were written.\n",
(bytes_written_before_reset + bytes_written));
fprintf(stderr,
"A total of %d files (of which %d are classes) were written to output.\n",
@@ -3159,7 +3153,9 @@ entry *&constant_pool::hashTabRef(byte tag, bytes &b)
assert((hlen & (hlen - 1)) == 0); // must be power of 2
uint32_t hash1 = hash & (hlen - 1); // == hash % hlen
uint32_t hash2 = 0; // lazily computed (requires mod op.)
+#ifndef NDEBUG
int probes = 0;
+#endif
while (ht[hash1] != nullptr)
{
entry &e = *ht[hash1];
@@ -3484,8 +3480,7 @@ void unpacker::reset()
segments_read_before_reset += 1;
if (verbose >= 2)
{
- fprintf(stderr, "After segment %d, " LONG_LONG_FORMAT
- " bytes read and " LONG_LONG_FORMAT " bytes written.\n",
+ fprintf(stderr, "After segment %d, %" PRIu64 " bytes read and %" PRIu64 " bytes written.\n",
segments_read_before_reset - 1, bytes_read_before_reset,
bytes_written_before_reset);
fprintf(stderr,
@@ -4595,7 +4590,9 @@ void unpacker::write_classfile_head()
putu2(cur_class_majver);
putu2(cp.outputIndexLimit);
+#ifndef NDEBUG
int checkIndex = 1;
+#endif
int noes = cp.outputEntries.length();
entry **oes = (entry **)cp.outputEntries.base();
for (int i = 0; i < noes; i++)
@@ -4788,6 +4785,6 @@ void unpacker::write_file_to_jar(unpacker::file *f)
}
if (verbose >= 3)
{
- fprintf(stderr, "Wrote " LONG_LONG_FORMAT " bytes to: %s\n", fsize, f->name);
+ fprintf(stderr, "Wrote %" PRIu64 " bytes to: %s\n", fsize, f->name);
}
}