fix windows sign mismatch warning

This commit is contained in:
Brad Hefta-Gaub 2014-01-15 15:08:58 -08:00
parent f445a391b7
commit d793bd44ee

View file

@ -474,7 +474,7 @@ void printVoxelCode(unsigned char* voxelCode) {
qDebug("voxelSizeInOctets=%d",voxelSizeInOctets);
qDebug("voxelBufferSize=%d",voxelBufferSize);
for(int i=0; i < voxelBufferSize; i++) {
for(unsigned int i=0; i < voxelBufferSize; i++) {
QDebug voxelBufferDebug = qDebug();
voxelBufferDebug << "i =" << i;
outputBits(voxelCode[i], &voxelBufferDebug);