From 15b3b0e9f8823752f80c7e597a70749813e61c79 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 25 Dec 2017 15:26:48 -0500 Subject: Always use braces --- src/ingen/ingen.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/ingen') diff --git a/src/ingen/ingen.cpp b/src/ingen/ingen.cpp index 0e147642..b775d415 100644 --- a/src/ingen/ingen.cpp +++ b/src/ingen/ingen.cpp @@ -249,8 +249,9 @@ main(int argc, char** argv) this_thread::sleep_for(chrono::milliseconds(500)); // Shut down - if (world->engine()) + if (world->engine()) { world->engine()->deactivate(); + } // Save configuration to restore preferences on next run const std::string path = conf.save( -- cgit v1.2.1