13
0

NO-OP: whitespace

This commit is contained in:
Robin Gareus 2024-07-23 15:46:53 +02:00
parent 787f5b2cc8
commit 5f0b15d446
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -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);
}
@ -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 ();