summaryrefslogtreecommitdiff
path: root/src/rharchive.c
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2011-02-16 21:16:40 (GMT)
committerChristian Pointner <equinox@helsinki.at>2011-02-16 21:16:40 (GMT)
commit95a985311dd1a1019762375e9013d018eb6e18bb (patch)
tree88a77ff8f27d716423a8bf886e70e71af99d88b3 /src/rharchive.c
parent1961ba11afb0e0a71bcce7fc264e3ea403049d82 (diff)
log_printf is thread safe now, however log_init and log_add_target isn't
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;