@swesterfeld commented on this pull request.
> +}
+
+static void
+list_jack_drivers (Driver::EntryVec &entries)
+{
+ map<std::string, DeviceDetails> devices;
+ jack_client_t *jack_client = connect_jack();
+ if (jack_client)
+ {
+ devices = query_jack_devices (jack_client);
+ disconnect_jack (jack_client);
+ }
+ else
+ {
+ // should we try to generate and show an error message if connecting jack failed?
+ }
Ok, removed the else branch.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.