From 4ba26a7f4fcef688619eb8d1fc4a26d924a9cd21 Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Mon, 2 Jan 2006 14:25:53 +0000 Subject: [PATCH] envy24control wordclock text patch From: John Rigg I reported a bug in envy24control about the text displayed when using the BNC word clock input on a Delta 1010 (bug id 0001677). It says `No signal' when locked and `Locked' when there's no signal. I wasn't sure how to submit a patch using the Bugtrack interface, so I've attached it here (this fixes it in alsa-tools-1.0.10). --- envy24control/hardware.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/envy24control/hardware.c b/envy24control/hardware.c index e3ba588..8f8a5a6 100644 --- a/envy24control/hardware.c +++ b/envy24control/hardware.c @@ -170,7 +170,7 @@ gint master_clock_status_timeout_callback(gpointer data) if ((err = snd_ctl_elem_read(ctl, sw)) < 0) g_print("Unable to determine word clock status: %s\n", snd_strerror(err)); gtk_label_set_text(GTK_LABEL(hw_master_clock_status_label), - snd_ctl_elem_value_get_boolean(sw, 0) ? "Locked" : "No signal"); + snd_ctl_elem_value_get_boolean(sw, 0) ? "No signal" : "Locked"); return TRUE; } -- 2.47.1