aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-16 16:29:16 +0000
committerDavid Robillard <d@drobilla.net>2012-03-16 16:29:16 +0000
commit62481d1cd30c78b90747370b620b26f0dd8ebae8 (patch)
tree58dff75651a60f412474f23760a664cae1689cc0 /plugins
parentd2b55bbfe730fb286156a69ce4f9d9c1e38e8c95 (diff)
downloadlv2-62481d1cd30c78b90747370b620b26f0dd8ebae8.tar.xz
Improve documentation.
Use char* for strings.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/eg-sampler.lv2/uris.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/eg-sampler.lv2/uris.h b/plugins/eg-sampler.lv2/uris.h
index 0d04754..9372418 100644
--- a/plugins/eg-sampler.lv2/uris.h
+++ b/plugins/eg-sampler.lv2/uris.h
@@ -88,7 +88,7 @@ write_set_file(LV2_Atom_Forge* forge,
lv2_atom_forge_blank(forge, &body_frame, 2, 0);
lv2_atom_forge_property_head(forge, uris->eg_file, 0);
- lv2_atom_forge_path(forge, (const uint8_t*)filename, filename_len);
+ lv2_atom_forge_path(forge, filename, filename_len);
lv2_atom_forge_pop(forge, &body_frame);
lv2_atom_forge_pop(forge, &set_frame);