comparison src/dmzlib.c @ 1004:2abca9bbfa41

Cosmetic.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 01 Mar 2015 03:09:46 +0200
parents 7a0c2fe22e60
children 7e54b2d08ce7
comparison
equal deleted inserted replaced
1003:7a0c2fe22e60 1004:2abca9bbfa41
350 350
351 351
352 static int dmZLibComputeHuffmanCodes(DMZLibContext * ctx) 352 static int dmZLibComputeHuffmanCodes(DMZLibContext * ctx)
353 { 353 {
354 DMZHuffmanContext z_codelength; 354 DMZHuffmanContext z_codelength;
355 Uint8 codeLengths[286 + 32 + 137]; //padding for maximum single op 355 Uint8 codeLengths[286 + 32 + 137]; // padding for maximum single op
356 Uint8 codeLengthSizes[19]; 356 Uint8 codeLengthSizes[19];
357 int i, n, ret; 357 int i, n, ret;
358 358
359 int hlit = dmZReceive(ctx, 5) + 257; 359 int hlit = dmZReceive(ctx, 5) + 257;
360 int hdist = dmZReceive(ctx, 5) + 1; 360 int hdist = dmZReceive(ctx, 5) + 1;