diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/run_output.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/run_output.c b/test/run_output.c index a280f88d4..594c4cd64 100644 --- a/test/run_output.c +++ b/test/run_output.c @@ -44,8 +44,11 @@ pcm_convert(G_GNUC_UNUSED struct pcm_convert_state *state, G_GNUC_UNUSED const struct audio_format *src_format, G_GNUC_UNUSED const void *src, G_GNUC_UNUSED size_t src_size, G_GNUC_UNUSED const struct audio_format *dest_format, - G_GNUC_UNUSED size_t *dest_size_r) + G_GNUC_UNUSED size_t *dest_size_r, + GError **error_r) { + g_set_error(error_r, pcm_convert_quark(), 0, + "Not implemented"); return NULL; } |