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:
Takashi Iwai 2015-09-08 22:13:50 +02:00
parent 5b21400c42
commit e38b13f128

View file

@ -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)