mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
NO-OP: whitespace
This commit is contained in:
parent
787f5b2cc8
commit
5f0b15d446
1 changed files with 12 additions and 7 deletions
|
|
@ -146,7 +146,8 @@ static void
|
||||||
init ()
|
init ()
|
||||||
{
|
{
|
||||||
if (!ARDOUR::init (true, localedir)) {
|
if (!ARDOUR::init (true, localedir)) {
|
||||||
cerr << "Ardour failed to initialize\n" << endl;
|
cerr << "Ardour failed to initialize\n"
|
||||||
|
<< endl;
|
||||||
console_madness_end ();
|
console_madness_end ();
|
||||||
::exit (EXIT_FAILURE);
|
::exit (EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
@ -542,6 +543,7 @@ usage ()
|
||||||
{
|
{
|
||||||
printf ("ardour-lua - interactive Ardour Lua interpreter.\n\n");
|
printf ("ardour-lua - interactive Ardour Lua interpreter.\n\n");
|
||||||
printf ("Usage: ardour-lua [ OPTIONS ] [ file [args] ]\n\n");
|
printf ("Usage: ardour-lua [ OPTIONS ] [ file [args] ]\n\n");
|
||||||
|
/* clang-format off */
|
||||||
/* 1 2 3 4 5 6 7 8
|
/* 1 2 3 4 5 6 7 8
|
||||||
*2345678901234567890123456789012345678901234567890123456789012345678901234567890*/
|
*2345678901234567890123456789012345678901234567890123456789012345678901234567890*/
|
||||||
printf ("Options:\n\
|
printf ("Options:\n\
|
||||||
|
|
@ -555,6 +557,7 @@ usage ()
|
||||||
printf ("\n\
|
printf ("\n\
|
||||||
Ardour at your finger tips...\n\
|
Ardour at your finger tips...\n\
|
||||||
\n");
|
\n");
|
||||||
|
/* clang-format on */
|
||||||
printf ("Report bugs to <https://tracker.ardour.org/>\n"
|
printf ("Report bugs to <https://tracker.ardour.org/>\n"
|
||||||
"Website: <https://ardour.org/>\n");
|
"Website: <https://ardour.org/>\n");
|
||||||
console_madness_end ();
|
console_madness_end ();
|
||||||
|
|
@ -566,12 +569,14 @@ main (int argc, char** argv)
|
||||||
{
|
{
|
||||||
const char* optstring = "hiVX";
|
const char* optstring = "hiVX";
|
||||||
|
|
||||||
|
/* clang-format off */
|
||||||
const struct option longopts[] = {
|
const struct option longopts[] = {
|
||||||
{ "help", 0, 0, 'h' },
|
{ "help", 0, 0, 'h' },
|
||||||
{ "interactive", 0, 0, 'i' },
|
{ "interactive", 0, 0, 'i' },
|
||||||
{ "version", 0, 0, 'V' },
|
{ "version", 0, 0, 'V' },
|
||||||
{ "exit-when-halted", 0, 0, 'X' },
|
{ "exit-when-halted", 0, 0, 'X' },
|
||||||
};
|
};
|
||||||
|
/* clang-format on */
|
||||||
|
|
||||||
bool interactive = false;
|
bool interactive = false;
|
||||||
console_madness_begin ();
|
console_madness_begin ();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue