Fixed type mismatch

git-svn-id: http://svn.drobilla.net/lad@103 a436a847-0d15-0410-975c-d299462d15a1
This commit is contained in:
dave 2006-07-26 17:52:23 +00:00
parent a21e6fe4d7
commit f5f7a033b8
2 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,7 @@ slv2_list_load_bundle(SLV2List list,
/** Get the number of plugins in the list.
*/
unsigned long
size_t
slv2_list_get_length(const SLV2List list);

View File

@ -55,7 +55,7 @@ slv2_list_load_all(SLV2List list)
{
assert(list != NULL);
const char* slv2_path = getenv("LV2_PATH");
char* slv2_path = getenv("LV2_PATH");
if (slv2_path) {
slv2_list_load_path(list, slv2_path);