diff options
author | Marius Kintel <marius@kintel.net> | 2011-12-04 21:20:19 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-12-04 21:20:19 (GMT) |
commit | faf4a6485143a9b0d1bbc45ddb32ac1bcd111946 (patch) | |
tree | c0a3b21e9409c40be3e8302066d41267df462f67 /src/mainwin.cc | |
parent | 1e2e2f6944636ea26259688d46c67da57094d947 (diff) |
Killed some warnings
Diffstat (limited to 'src/mainwin.cc')
-rw-r--r-- | src/mainwin.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwin.cc b/src/mainwin.cc index 22fb82c..29c84b0 100644 --- a/src/mainwin.cc +++ b/src/mainwin.cc @@ -849,11 +849,11 @@ void MainWindow::compileCSG(bool procevents) } if (root_chain->polysets.size() > 1000) { - PRINTF("WARNING: Normalized tree has %d elements!", root_chain->polysets.size()); + PRINTF("WARNING: Normalized tree has %d elements!", int(root_chain->polysets.size())); PRINTF("WARNING: OpenCSG rendering has been disabled."); } else { - PRINTF("Normalized CSG tree has %d elements", root_chain->polysets.size()); + PRINTF("Normalized CSG tree has %d elements", int(root_chain->polysets.size())); this->opencsgRenderer = new OpenCSGRenderer(this->root_chain, this->highlights_chain, this->background_chain, |