diff options
author | David Robillard <d@drobilla.net> | 2017-12-25 15:26:48 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-12-25 16:26:13 -0500 |
commit | 15b3b0e9f8823752f80c7e597a70749813e61c79 (patch) | |
tree | 3f324c6e2a455be8b929456dadbf06520889d435 /src/ingen | |
parent | d6a9571641bcb34acb3521feb08eea33195fd9ca (diff) | |
download | ingen-15b3b0e9f8823752f80c7e597a70749813e61c79.tar.gz ingen-15b3b0e9f8823752f80c7e597a70749813e61c79.tar.bz2 ingen-15b3b0e9f8823752f80c7e597a70749813e61c79.zip |
Always use braces
Diffstat (limited to 'src/ingen')
-rw-r--r-- | src/ingen/ingen.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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( |