mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-05 04:49:45 +02:00
fix windows sign mismatch warning
This commit is contained in:
parent
f445a391b7
commit
d793bd44ee
1 changed files with 1 additions and 1 deletions
|
@ -474,7 +474,7 @@ void printVoxelCode(unsigned char* voxelCode) {
|
||||||
qDebug("voxelSizeInOctets=%d",voxelSizeInOctets);
|
qDebug("voxelSizeInOctets=%d",voxelSizeInOctets);
|
||||||
qDebug("voxelBufferSize=%d",voxelBufferSize);
|
qDebug("voxelBufferSize=%d",voxelBufferSize);
|
||||||
|
|
||||||
for(int i=0; i < voxelBufferSize; i++) {
|
for(unsigned int i=0; i < voxelBufferSize; i++) {
|
||||||
QDebug voxelBufferDebug = qDebug();
|
QDebug voxelBufferDebug = qDebug();
|
||||||
voxelBufferDebug << "i =" << i;
|
voxelBufferDebug << "i =" << i;
|
||||||
outputBits(voxelCode[i], &voxelBufferDebug);
|
outputBits(voxelCode[i], &voxelBufferDebug);
|
||||||
|
|
Loading…
Reference in a new issue