From 8d5571fa4c97bf443d1574a3d62da5095063c607 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 12 May 2020 17:10:49 +0200 Subject: [PATCH] audiotestsrc: fix function signature --- spa/plugins/audiotestsrc/audiotestsrc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/audiotestsrc/audiotestsrc.c b/spa/plugins/audiotestsrc/audiotestsrc.c index cabeb7445..669425e9a 100644 --- a/spa/plugins/audiotestsrc/audiotestsrc.c +++ b/spa/plugins/audiotestsrc/audiotestsrc.c @@ -88,7 +88,7 @@ struct buffer { struct impl; -typedef int (*render_func_t) (struct impl *this, void *samples, size_t n_samples); +typedef void (*render_func_t) (struct impl *this, void *samples, size_t n_samples); struct port { uint64_t info_all;