diff options
author | David Robillard <d@drobilla.net> | 2012-03-08 17:55:39 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-03-08 17:55:39 +0000 |
commit | 16dd9d7496ca907a68f9bae2aa92a5069fe9ef62 (patch) | |
tree | 27ec16d591e291e9b20110982ab4d3f818cae5f4 /test | |
parent | a442a47f3a6265de156ad278760f50438cbdde64 (diff) | |
download | lilv-16dd9d7496ca907a68f9bae2aa92a5069fe9ef62.tar.gz lilv-16dd9d7496ca907a68f9bae2aa92a5069fe9ef62.tar.bz2 lilv-16dd9d7496ca907a68f9bae2aa92a5069fe9ef62.zip |
Add base_uri parameter to lilv_state_to_string().
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@4032 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'test')
-rw-r--r-- | test/lilv_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lilv_test.c b/test/lilv_test.c index 5e2c54a..804b813 100644 --- a/test/lilv_test.c +++ b/test/lilv_test.c @@ -1214,7 +1214,7 @@ test_state(void) // Save state to a string char* state1_str = lilv_state_to_string( - world, &map, &unmap, state, "http://example.org/state1"); + world, &map, &unmap, state, "http://example.org/state1", NULL); // Restore from string LilvState* from_str = lilv_state_new_from_string(world, &map, state1_str); |