From bca72fafc8053ad6c459cb158d871205285c20c8 Mon Sep 17 00:00:00 2001 From: Marco Hladik Date: Sat, 27 Jun 2020 14:20:58 +0200 Subject: [PATCH] Sentences_ResetSample: Change return type. --- src/client/sentences.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/sentences.c b/src/client/sentences.c index 8cd842e4..89d2e14d 100644 --- a/src/client/sentences.c +++ b/src/client/sentences.c @@ -162,8 +162,8 @@ Sentences_ProcessSample(string sample) return sprintf("%s/%s", g_sentences_samplepath, sample); } -string -Sentences_ResetSample() +void +Sentences_ResetSample(void) { g_sentences_samplepath = "vox"; }