summaryrefslogtreecommitdiffstats
path: root/src/slv2_internal.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-03-08 00:54:23 +0000
committerDavid Robillard <d@drobilla.net>2011-03-08 00:54:23 +0000
commita9bbabe7ff2d9ca96ab047ccb86c2698cfb2d7b3 (patch)
tree4d124d439d59aa7da04f818a000a2f966e63503b /src/slv2_internal.h
parent27341a1b6bb661114184f93fadaf534d890e8498 (diff)
downloadlilv-a9bbabe7ff2d9ca96ab047ccb86c2698cfb2d7b3.tar.gz
lilv-a9bbabe7ff2d9ca96ab047ccb86c2698cfb2d7b3.tar.bz2
lilv-a9bbabe7ff2d9ca96ab047ccb86c2698cfb2d7b3.zip
Use the same data structure for all collections (fix ticket #650).
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3054 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r--src/slv2_internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h
index 0752044..97f141f 100644
--- a/src/slv2_internal.h
+++ b/src/slv2_internal.h
@@ -294,8 +294,8 @@ slv2_sequence_insert(GSequence* seq, void* value)
}
static inline void
-slv2_array_append(GPtrArray* array, void* value) {
- g_ptr_array_add(array, value);
+slv2_array_append(GSequence* seq, void* value) {
+ g_sequence_append(seq, value);
}
struct _SLV2Header*