# HG changeset patch # User William Pitcock # Date 1224182186 18000 # Node ID 323b3d9c9b194e518421a4f460a3e172f807d433 # Parent 859ef55f062c2d06e9d9c68c46d39e33fd8a7e7c Exit immediately upon failing to launch interface. diff -r 859ef55f062c -r 323b3d9c9b19 src/audacious/main.c --- a/src/audacious/main.c Thu Oct 16 12:59:14 2008 -0500 +++ b/src/audacious/main.c Thu Oct 16 13:36:26 2008 -0500 @@ -618,7 +618,10 @@ interface_run(i); } else + { g_print("%s: unable to launch selected interface %s\n", argv[0], options.interface); + return EXIT_FAILURE; + } aud_quit(); return EXIT_SUCCESS;