From 4cf76cb2285a7460ec3e50eb6ecf035b63389e82 Mon Sep 17 00:00:00 2001 From: James Dyson Date: Thu, 5 Nov 2015 18:23:27 +1100 Subject: [PATCH] Fixed error message from no input found --- example/sio_microphone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/sio_microphone.c b/example/sio_microphone.c index 7d8e306..0e3d3d4 100644 --- a/example/sio_microphone.c +++ b/example/sio_microphone.c @@ -251,7 +251,7 @@ int main(int argc, char **argv) { int default_in_device_index = soundio_default_input_device_index(soundio); if (default_in_device_index < 0) - panic("no output device found"); + panic("no input device found"); int in_device_index = default_in_device_index; if (in_device_id) {