diff options
author | Marius Kintel <marius@kintel.net> | 2012-01-25 16:04:07 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-01-25 16:04:07 (GMT) |
commit | e305954e271892b593e1aa1a5eb0f43c1c10609e (patch) | |
tree | 817b6f0538b8a2a47877f9eeaf0f49860cf824ca /src | |
parent | eff1f7f8c91cee34c584a89c5d09e401c609f93e (diff) |
Fixed recently introduced crash bug when using the % and # operator, reported by Triffid Hunter
Diffstat (limited to 'src')
-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 ff6ce3e..c0a0bff 100644 --- a/src/mainwin.cc +++ b/src/mainwin.cc @@ -788,7 +788,7 @@ void MainWindow::compileCSG(bool procevents) if (highlight_terms.size() > 0) { - PRINTB("Compiling highlights (%zu CSG Trees)...", highlight_terms.size()); + PRINTB("Compiling highlights (%d CSG Trees)...", highlight_terms.size()); if (procevents) QApplication::processEvents(); @@ -801,7 +801,7 @@ void MainWindow::compileCSG(bool procevents) if (background_terms.size() > 0) { - PRINTB("Compiling background (%zu CSG Trees)...", background_terms.size()); + PRINTB("Compiling background (%d CSG Trees)...", background_terms.size()); if (procevents) QApplication::processEvents(); |