type squish

This commit is contained in:
ZappoMan 2013-10-15 18:28:56 -07:00
parent 6fff53a2dc
commit afcf6dd3e0
2 changed files with 16 additions and 16 deletions

View file

@ -29,7 +29,7 @@ void printOctalCode(const unsigned char * octalCode) {
if (!octalCode) { if (!octalCode) {
qDebug("NULL\n"); qDebug("NULL\n");
} else { } else {
for (int i = 0; i < bytesRequiredForCodeLength(*octalCode); i++) { for (int i = 0; i < bytesRequiredForCodeLength(numberOfThreeBitSectionsInCode(octalCode)); i++) {
outputBits(octalCode[i],false); outputBits(octalCode[i],false);
} }
qDebug("\n"); qDebug("\n");