mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 02:03:57 +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("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);
|
||||
|
|
Loading…
Reference in a new issue