Skip to content

Commit

Permalink
Fix compile warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRuff committed May 1, 2021
1 parent aa3de95 commit a0ffc3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SysMan/audio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ void Audio::switchDevice(std::pair<int, QString> device)

void Audio::getInputs()
{
QRegularExpression inputsIdentifier = QRegularExpression("index: \\d+\\n\\tname: <alsa_input\.*>(?s)(.*?)alsa\.card_name = \"(.*?)\"");
QRegularExpression inputsIdentifier = QRegularExpression("index: \\d+\\n\\tname: <alsa_input.*>(?s)(.*?)alsa\\.card_name = \"(.*?)\"");

audioController.start("/usr/bin/pacmd", QStringList("list-sources"));
audioController.waitForFinished(); // will wait for 30 seconds
Expand Down

0 comments on commit a0ffc3e

Please sign in to comment.