mirror of
https://github.com/overte-org/overte.git
synced 2025-07-23 16:44:09 +02:00
fix windows warning about signed unsigned mismatch
This commit is contained in:
parent
a94e371e5c
commit
0cc777caa9
1 changed files with 2 additions and 2 deletions
|
@ -174,7 +174,7 @@ bool copyAndFillOperation(OctreeElement* element, void* extraData) {
|
||||||
sprintf(outputMessage,"Completed: %d%% (%lu of %lu) - Creating voxel %lu at [%f,%f,%f,%f]",
|
sprintf(outputMessage,"Completed: %d%% (%lu of %lu) - Creating voxel %lu at [%f,%f,%f,%f]",
|
||||||
percentDone,args->inCount,args->originalCount,args->outCount,x,y,z,s);
|
percentDone,args->inCount,args->originalCount,args->outCount,x,y,z,s);
|
||||||
printf("%s",outputMessage);
|
printf("%s",outputMessage);
|
||||||
for (int b = 0; b < strlen(outputMessage); b++) {
|
for (unsigned int b = 0; b < strlen(outputMessage); b++) {
|
||||||
printf("\b");
|
printf("\b");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -187,7 +187,7 @@ bool copyAndFillOperation(OctreeElement* element, void* extraData) {
|
||||||
sprintf(outputMessage,"Completed: %d%% (%lu of %lu) - Creating fill voxel %lu at [%f,%f,%f,%f]",
|
sprintf(outputMessage,"Completed: %d%% (%lu of %lu) - Creating fill voxel %lu at [%f,%f,%f,%f]",
|
||||||
percentDone,args->inCount,args->originalCount,args->outCount,x,y,z,s);
|
percentDone,args->inCount,args->originalCount,args->outCount,x,y,z,s);
|
||||||
printf("%s",outputMessage);
|
printf("%s",outputMessage);
|
||||||
for (int b = 0; b < strlen(outputMessage); b++) {
|
for (unsigned int b = 0; b < strlen(outputMessage); b++) {
|
||||||
printf("\b");
|
printf("\b");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue