NO-OP: whitespace
This commit is contained in:
parent
787f5b2cc8
commit
5f0b15d446
@ -58,8 +58,8 @@ static bool terminate_when_halted = false;
|
||||
|
||||
/* extern VST functions */
|
||||
int vstfx_init (void*) { return 0; }
|
||||
void vstfx_exit () {}
|
||||
void vstfx_destroy_editor (VSTState*) {}
|
||||
void vstfx_exit () { }
|
||||
void vstfx_destroy_editor (VSTState*) { }
|
||||
|
||||
class LuaReceiver : public Receiver
|
||||
{
|
||||
@ -109,7 +109,7 @@ public:
|
||||
run_loop_thread = Glib::Threads::Thread::self ();
|
||||
}
|
||||
|
||||
bool call_slot (InvalidationRecord* ir, const boost::function<void()>& f)
|
||||
bool call_slot (InvalidationRecord* ir, const boost::function<void ()>& f)
|
||||
{
|
||||
if (Glib::Threads::Thread::self () == run_loop_thread) {
|
||||
cout << string_compose ("%1/%2 direct dispatch of call slot via functor @ %3, invalidation %4\n", event_loop_name (), pthread_name (), &f, ir);
|
||||
@ -146,7 +146,8 @@ static void
|
||||
init ()
|
||||
{
|
||||
if (!ARDOUR::init (true, localedir)) {
|
||||
cerr << "Ardour failed to initialize\n" << endl;
|
||||
cerr << "Ardour failed to initialize\n"
|
||||
<< endl;
|
||||
console_madness_end ();
|
||||
::exit (EXIT_FAILURE);
|
||||
}
|
||||
@ -449,7 +450,7 @@ setup_lua ()
|
||||
|
||||
AudioEngine::instance ()->stop ();
|
||||
|
||||
AudioEngine::instance()->Halted.connect_same_thread (engine_connections, boost::bind (&engine_halted, _1));
|
||||
AudioEngine::instance ()->Halted.connect_same_thread (engine_connections, boost::bind (&engine_halted, _1));
|
||||
}
|
||||
|
||||
static int
|
||||
@ -542,6 +543,7 @@ usage ()
|
||||
{
|
||||
printf ("ardour-lua - interactive Ardour Lua interpreter.\n\n");
|
||||
printf ("Usage: ardour-lua [ OPTIONS ] [ file [args] ]\n\n");
|
||||
/* clang-format off */
|
||||
/* 1 2 3 4 5 6 7 8
|
||||
*2345678901234567890123456789012345678901234567890123456789012345678901234567890*/
|
||||
printf ("Options:\n\
|
||||
@ -555,6 +557,7 @@ usage ()
|
||||
printf ("\n\
|
||||
Ardour at your finger tips...\n\
|
||||
\n");
|
||||
/* clang-format on */
|
||||
printf ("Report bugs to <https://tracker.ardour.org/>\n"
|
||||
"Website: <https://ardour.org/>\n");
|
||||
console_madness_end ();
|
||||
@ -566,12 +569,14 @@ main (int argc, char** argv)
|
||||
{
|
||||
const char* optstring = "hiVX";
|
||||
|
||||
/* clang-format off */
|
||||
const struct option longopts[] = {
|
||||
{ "help", 0, 0, 'h' },
|
||||
{ "interactive", 0, 0, 'i' },
|
||||
{ "version", 0, 0, 'V' },
|
||||
{ "exit-when-halted", 0, 0, 'X' },
|
||||
};
|
||||
/* clang-format on */
|
||||
|
||||
bool interactive = false;
|
||||
console_madness_begin ();
|
||||
|
Loading…
Reference in New Issue
Block a user