More const's and readability improvements

This commit is contained in:
Sean Purcell
2017-01-31 15:57:18 -08:00
parent f5d2f32d4d
commit 92ec2ea62f
3 changed files with 410 additions and 464 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ int main(int argc, char **argv) {
decompressed_size = MAX_COMPRESSION_RATIO * input_size;
fprintf(stderr, "WARNING: Compressed data does contain decompressed "
"size, going to assume the compression ratio is at "
"most %d (decompressed size of at most %lld\n",
"most %d (decompressed size of at most %zu)\n",
MAX_COMPRESSION_RATIO, decompressed_size);
}
output = malloc(decompressed_size);