aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 94cccfe..9cc8ee8 100644
--- a/main.cpp
+++ b/main.cpp
@@ -20,7 +20,8 @@ int main(int argc, char** argv) {
// Museum and View both create their own worker threads, so the main thread
// should remain to keep the view active.
- while (view.open);
+ while (view.open)
+ ;
return EXIT_SUCCESS;
}