summaryrefslogtreecommitdiff
path: root/eel/eel-string.c
diff options
context:
space:
mode:
Diffstat (limited to 'eel/eel-string.c')
-rw-r--r--eel/eel-string.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/eel/eel-string.c b/eel/eel-string.c
index 3a8f2581..5d74c317 100644
--- a/eel/eel-string.c
+++ b/eel/eel-string.c
@@ -988,11 +988,7 @@ retry_atomic_decrement:
{
G_LOCK (unique_ref_strs);
/* Need to recheck after taking lock to avoid races with _get_unique() */
-#if !GLIB_CHECK_VERSION (2, 30, 0)
- if (g_atomic_int_exchange_and_add (count, -1) == 0x80000001)
-#else
if (g_atomic_int_add (count, -1) == 0x80000001)
-#endif
{
g_hash_table_remove (unique_ref_strs, (char *)str);
g_free ((char *)count);