Skip to content

Commit

Permalink
Fix formatting of warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartm committed Jun 9, 2013
1 parent ce7473d commit 28ee73f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/libs/libmythtv/recorders/audioinputoss.cpp
Expand Up @@ -67,7 +67,7 @@ bool AudioInputOSS::Open(uint sample_bits, uint sample_rate, uint channels)
if (ioctl(dsp_fd, SNDCTL_DSP_SETTRIGGER, &chk) < 0)
{
LOG(VB_GENERAL, LOG_WARNING,
LOC_DEV + "failed to disable audio device" + ENO);
LOC_DEV + "failed to disable audio device: " + ENO);
}

// Set format
Expand Down Expand Up @@ -172,7 +172,7 @@ bool AudioInputOSS::Start(void)
if (ioctl(dsp_fd, SNDCTL_DSP_SETTRIGGER, &trig) < 0)
{
LOG(VB_GENERAL, LOG_WARNING,
LOC_DEV + "failed to disable audio device" + ENO);
LOC_DEV + "failed to disable audio device: " + ENO);
}
trig = PCM_ENABLE_INPUT; // enable input
if (ioctl(dsp_fd, SNDCTL_DSP_SETTRIGGER, &trig) < 0)
Expand Down

0 comments on commit 28ee73f

Please sign in to comment.