mirror of
https://github.com/badaix/snapcast.git
synced 2025-08-06 10:09:33 +02:00
Fix linter warnings
This commit is contained in:
parent
66868e2501
commit
5c41afd9e3
31 changed files with 131 additions and 116 deletions
|
@ -220,7 +220,7 @@ void JackStream::tryConnect()
|
|||
bool JackStream::openJackConnection()
|
||||
{
|
||||
char* serverName = serverName_.data();
|
||||
jack_options_t options = (jack_options_t)(JackNoStartServer | JackServerName);
|
||||
auto options = static_cast<jack_options_t>(JackNoStartServer | JackServerName); // NOLINT
|
||||
|
||||
client_ = jack_client_open(name_.c_str(), options, nullptr, serverName);
|
||||
if (client_ == nullptr)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue