From 237c3bc44954cd17087bbe437edbd575300b99f1 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Mon, 14 Jan 2008 15:17:54 +0100 Subject: inotail.c: Correct format specifier for size_t --- inotail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inotail.c b/inotail.c index 651c104..becd95f 100644 --- a/inotail.c +++ b/inotail.c @@ -68,7 +68,7 @@ static void *emalloc(size_t size) void *ret = malloc(size); if (unlikely(!ret)) { - fprintf(stderr, "Error: Failed to allocate %lu bytes of memory (%s)\n", size, strerror(errno)); + fprintf(stderr, "Error: Failed to allocate %zu bytes of memory (%s)\n", size, strerror(errno)); exit(EXIT_FAILURE); } -- cgit v1.2.3-54-g00ecf d>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVedang Patel <vedang.patel@intel.com>2015-09-30 17:31:34 +0800
committerMark Brown <broonie@kernel.org>2015-10-02 17:59:48 +0100
commit731324f5cee3caf230427f754701212961fe0bb1 (patch)
tree69c08c7c8a099e0dadff969fff7e2e09e66aece8 /include/uapi/sound/asoc.h
parente8b3fe8f383bbf055cbd69b776fcbbb5ed3befcd (diff)
ASoC: topology: ABI - Add name element to snd_soc_tplg_stream
For codec-codec links, this struct will be mapped to the DAI links's params, which is struct snd_soc_pcm_stream and it needs a stream name. Signed-off-by: Vedang Patel <vedang.patel@intel.com> Signed-off-by: Mengdong Lin <mengdong.lin@intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/uapi/sound/asoc.h')