mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:44:11 +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]",
|
||||
percentDone,args->inCount,args->originalCount,args->outCount,x,y,z,s);
|
||||
printf("%s",outputMessage);
|
||||
for (int b = 0; b < strlen(outputMessage); b++) {
|
||||
for (unsigned int b = 0; b < strlen(outputMessage); 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]",
|
||||
percentDone,args->inCount,args->originalCount,args->outCount,x,y,z,s);
|
||||
printf("%s",outputMessage);
|
||||
for (int b = 0; b < strlen(outputMessage); b++) {
|
||||
for (unsigned int b = 0; b < strlen(outputMessage); b++) {
|
||||
printf("\b");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue