summaryrefslogtreecommitdiff
path: root/libs/fst/fst.c
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-02-22 02:44:34 +0100
committerRobin Gareus <robin@gareus.org>2014-02-22 03:11:48 +0100
commitdfdf9a35f1e990c45f35632eb993eb67f4f7abf8 (patch)
treea74a58b39c8f08859c547b8e0f6c8a443cba8bf2 /libs/fst/fst.c
parentb3154e8ed6b5bb62acdc4b5a72133ceaeab7e53e (diff)
resolve gtk + VST threading issues
while (gtk_events_pending()) gtk_main_iteration(); never returns as long as there's a idle call registered somewhere (and it's not called from an idle callback itself)
Diffstat (limited to 'libs/fst/fst.c')
-rw-r--r--libs/fst/fst.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/fst/fst.c b/libs/fst/fst.c
index 433354e1f1..3ceee5278f 100644
--- a/libs/fst/fst.c
+++ b/libs/fst/fst.c
@@ -15,7 +15,7 @@ fst_error (const char *fmt, ...)
va_end (ap);
}
-void
+static void
default_fst_error_callback (const char *desc)
{
fprintf(stderr, "%s\n", desc);