aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/lv2plug.in
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-02-19 03:29:47 +0000
committerDavid Robillard <d@drobilla.net>2012-02-19 03:29:47 +0000
commit35a3120672f78c13a58ea5c947becd5bbd362caf (patch)
tree1615e2093bcc8c6192aacea14ee97de64de2eb9d /lv2/lv2plug.in
parent98f78110c6663913d25a9f58f1b45a2198bdefcf (diff)
downloadlv2-35a3120672f78c13a58ea5c947becd5bbd362caf.tar.xz
Rename LV2_Atom_Object::type => LV2_Atom_Object::otype to avoid confusion with LV2_Atom::type.
Diffstat (limited to 'lv2/lv2plug.in')
-rw-r--r--lv2/lv2plug.in/ns/ext/atom/atom.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lv2/lv2plug.in/ns/ext/atom/atom.h b/lv2/lv2plug.in/ns/ext/atom/atom.h
index 5583ddb..a8ec72d 100644
--- a/lv2/lv2plug.in/ns/ext/atom/atom.h
+++ b/lv2/lv2plug.in/ns/ext/atom/atom.h
@@ -169,7 +169,7 @@ typedef struct {
typedef struct {
LV2_Atom atom; /**< Atom header. */
uint32_t id; /**< URID for atom:Resource, or blank ID for atom:Blank. */
- uint32_t type; /**< Type URID (same as rdf:type, for fast dispatch). */
+ uint32_t otype; /**< Type URID (same as rdf:type, for fast dispatch). */
/* Contents (a series of property bodies) follow here. */
} LV2_Atom_Object;
61 162 163 164 165 166 167 168 169