diff options
author | Robert McQueen <robert.mcqueen@collabora.co.uk> | 2006-09-15 13:37:03 +0000 |
---|---|---|
committer | Robert McQueen <robert.mcqueen@collabora.co.uk> | 2006-09-15 13:37:03 +0000 |
commit | 0aa4a12fac73bde4e32a84ff294134f595e59f82 (patch) | |
tree | 11eda85c44245c49cfec373a6feb2c79942c8d20 | |
parent | 1951f9c74f461535cc68e25ca4d7379e0fb2aede (diff) |
Tweak debug message to not say the name of the sink, it's not always guaranteed to be one thing or another.
-rw-r--r-- | src/tp-stream-engine.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tp-stream-engine.c b/src/tp-stream-engine.c index 2a22d03..39b40ee 100644 --- a/src/tp-stream-engine.c +++ b/src/tp-stream-engine.c @@ -564,9 +564,9 @@ bus_async_handler (GstBus *bus, if (wp != NULL) { - g_debug ("%s: ximagesink for %s window (id %u) has gone, " - "removing", G_STRFUNC, - wp->stream == NULL ? "preview" : "output", wp->window_id); + g_debug ("%s: sink for %s window (id %u) has gone, removing", + G_STRFUNC, wp->stream == NULL ? "preview" : "output", + wp->window_id); wp->removing = TRUE; _remove_defunct_sinks (engine); |