diff options
author | David Robillard <d@drobilla.net> | 2011-11-13 21:19:12 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-11-13 21:19:12 +0000 |
commit | 50a323df04a85993f0e296e07ce26ed66f883cc4 (patch) | |
tree | 499b6f75bb2cc7d6b3e4912b0ace65e249cc43fe /ext/persist.lv2 | |
parent | 363810887660d2ddef18a90cb43003ea3f0b89e3 (diff) | |
download | lv2-50a323df04a85993f0e296e07ce26ed66f883cc4.tar.xz |
Fix invalid XML (lack of) escapes.
Diffstat (limited to 'ext/persist.lv2')
-rw-r--r-- | ext/persist.lv2/persist.ttl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/persist.lv2/persist.ttl b/ext/persist.lv2/persist.ttl index 1c02cc2..697b931 100644 --- a/ext/persist.lv2/persist.ttl +++ b/ext/persist.lv2/persist.ttl @@ -147,7 +147,7 @@ int store_callback(void* callback_data, uint32_t type, uint32_t flags) { - if ((flags & LV2_PERSIST_IS_POD)) { + if ((flags & LV2_PERSIST_IS_POD)) { /* Keeping state in memory only, if disk was involved then LV2_PERSIST_IS_PORTABLE would have to be checked as well. */ |