mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-28 17:29:19 +00:00
Fix string using
This commit is contained in:
parent
0fcbc68315
commit
4ec4ad1ea9
1 changed files with 2 additions and 2 deletions
|
|
@ -35,10 +35,10 @@ SimpleCaptureGraph::SimpleCaptureGraph(const std::string &capture, const std::st
|
|||
|
||||
playbackCard = ms_snd_card_manager_get_card(ms_factory_get_snd_card_manager(msFactory), playbackCardId.c_str());
|
||||
if (!playbackCard)
|
||||
qWarning("Cannot get playback card from MSFactory with : %s", QString::fromStdString(playbackCardId));
|
||||
qWarning("Cannot get playback card from MSFactory with : " +QString::fromStdString(playbackCardId));
|
||||
captureCard = ms_snd_card_manager_get_card(ms_factory_get_snd_card_manager(msFactory), captureCardId.c_str());
|
||||
if (!captureCard)
|
||||
qWarning("Cannot get capture card from MSFactory with : %s", QString::fromStdString(captureCardId));
|
||||
qWarning("Cannot get capture card from MSFactory with : " +QString::fromStdString(captureCardId));
|
||||
|
||||
if(playbackCard && captureCard)// Assure to initialize when playback and capture are available
|
||||
init();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue