summaryrefslogtreecommitdiff
path: root/src/rharchive.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rharchive.c')
-rw-r--r--src/rharchive.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rharchive.c b/src/rharchive.c
index a44a5d2..6ab1538 100644
--- a/src/rharchive.c
+++ b/src/rharchive.c
@@ -47,7 +47,7 @@ static gboolean bus_call(GstBus *bus, GstMessage *msg, gpointer data)
switch (GST_MESSAGE_TYPE(msg)) {
case GST_MESSAGE_EOS: {
- log_printf(NOTICE, "End of stream"); // thread safety...
+ log_printf(NOTICE, "End of stream");
g_main_loop_quit (loop);
break;
}
@@ -57,7 +57,7 @@ static gboolean bus_call(GstBus *bus, GstMessage *msg, gpointer data)
gst_message_parse_error(msg, &error, &debug);
g_free(debug);
- log_printf(ERROR, "%s", error->message); // thread safety...
+ log_printf(ERROR, "%s", error->message);
g_error_free(error);
g_main_loop_quit(loop);
break;