summaryrefslogtreecommitdiffstats
path: root/src/utils/pasuspender.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/pasuspender.c')
-rw-r--r--src/utils/pasuspender.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/utils/pasuspender.c b/src/utils/pasuspender.c
index ae59086b..05d96a68 100644
--- a/src/utils/pasuspender.c
+++ b/src/utils/pasuspender.c
@@ -149,8 +149,10 @@ static void context_state_callback(pa_context *c, void *userdata) {
if (pa_context_is_local(c)) {
pa_operation_unref(pa_context_suspend_sink_by_index(c, PA_INVALID_INDEX, 1, suspend_complete, NULL));
pa_operation_unref(pa_context_suspend_source_by_index(c, PA_INVALID_INDEX, 1, suspend_complete, NULL));
- } else
+ } else {
+ fprintf(stderr, "WARNING: Sound server is not local, not suspending.\n");
start_child();
+ }
break;