summaryrefslogtreecommitdiff
path: root/pango/querymodules.c
diff options
context:
space:
mode:
Diffstat (limited to 'pango/querymodules.c')
-rw-r--r--pango/querymodules.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pango/querymodules.c b/pango/querymodules.c
index 4133ef92..549003fb 100644
--- a/pango/querymodules.c
+++ b/pango/querymodules.c
@@ -44,7 +44,7 @@
#endif
#define SOEXT_LEN ((int) strlen (SOEXT))
-static gboolean system_mode;
+static gboolean system_mode; /* MT-safe as we're single-threaded! */
static gboolean
string_needs_escape (const char *str)
@@ -97,7 +97,7 @@ escape_string (const char *str)
static const char *
string_from_script (PangoScript script)
{
- static GEnumClass *class = NULL;
+ static GEnumClass *class = NULL; /* MT-safe as we're single-threaded! */
GEnumValue *value;
if (!class)
class = g_type_class_ref (PANGO_TYPE_SCRIPT);