aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2022-03-22 00:29:20 +0100
committerdec05eba <dec05eba@protonmail.com>2022-03-22 00:29:20 +0100
commitf81bdfb29e2747c39c982a9f4cbbdaa830c2560a (patch)
tree1669c809e67b738fe91d3a6ad2053e36d60264a5 /src
parent97e0a6ad1b5204bc919d4d852b0b8a2c0c10a611 (diff)
Use /usr/lib64 instead of /usr/lib, which makes it compatible with gentoo
Diffstat (limited to 'src')
-rw-r--r--src/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound.cpp b/src/sound.cpp
index 59f5972..779aa87 100644
--- a/src/sound.cpp
+++ b/src/sound.cpp
@@ -33,7 +33,7 @@ int sound_device_get_by_name(SoundDevice *device, const char *name, unsigned int
pa_simple *pa_handle = pa_simple_new(nullptr, "gpu-screen-recorder", PA_STREAM_RECORD, name, "record", &ss, nullptr, nullptr, &error);
if(!pa_handle) {
- fprintf(stderr, "pa_simple_new() failed: %s\n", pa_strerror(error));
+ fprintf(stderr, "pa_simple_new() failed: %s. Audio input device %s might not be valid\n", pa_strerror(error), name);
return -1;
}