Skip to content

Commit

Permalink
[ALSA] soc-core: fix multi-line string literal
Browse files Browse the repository at this point in the history
Properly quote a string that had an embedded newline.

Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
  • Loading branch information
Clemens Ladisch authored and Jaroslav Kysela committed Feb 9, 2007
1 parent 8dafc0f commit e117483
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sound/soc/soc-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -575,8 +575,8 @@ static int soc_pcm_open(struct snd_pcm_substream *substream)
}

dbg("asoc: %s <-> %s info:\n", rtd->codec_dai->name, rtd->cpu_dai->name);
dbg("asoc: rate mask 0x%x \nasoc: min ch %d max ch %d\n
asoc: min rate %d max rate %d\n",
dbg("asoc: rate mask 0x%x \nasoc: min ch %d max ch %d\n"
"asoc: min rate %d max rate %d\n",
runtime->hw.rates, runtime->hw.channels_min,
runtime->hw.channels_max, runtime->hw.rate_min, runtime->hw.rate_max);

Expand Down

0 comments on commit e117483

Please sign in to comment.