mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-03 09:01:52 -05:00
topology: parser: Add missing return value to snd_tplg_set_manifest_data()
Spotted by gcc warning: parser.c: In function ‘snd_tplg_set_manifest_data’: parser.c:361:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
5b21400c42
commit
e38b13f128
1 changed files with 1 additions and 0 deletions
|
|
@ -358,6 +358,7 @@ int snd_tplg_set_manifest_data(snd_tplg_t *tplg, const void *data, int len)
|
||||||
{
|
{
|
||||||
tplg->manifest.priv.size = len;
|
tplg->manifest.priv.size = len;
|
||||||
tplg->manifest_pdata = data;
|
tplg->manifest_pdata = data;
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void snd_tplg_verbose(snd_tplg_t *tplg, int verbose)
|
void snd_tplg_verbose(snd_tplg_t *tplg, int verbose)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue