From e388e377aabe58ba6fc69be086192a2a1b6d6429 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 15 Jun 2024 08:00:33 -0700 Subject: [PATCH] audio: Refer to audio devices to "playback" and "recording" --- test/testaudiohotplug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testaudiohotplug.c b/test/testaudiohotplug.c index 25ba5eff5..6c445529a 100644 --- a/test/testaudiohotplug.c +++ b/test/testaudiohotplug.c @@ -54,7 +54,7 @@ static void poked(int sig) static const char *devtypestr(int recording) { - return recording ? "capture" : "output"; + return recording ? "recording" : "playback"; } static void iteration(void)