summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/world.rst2
-rw-r--r--src/lilv_internal.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/doc/world.rst b/doc/world.rst
index 8b71165..e96c18f 100644
--- a/doc/world.rst
+++ b/doc/world.rst
@@ -39,7 +39,7 @@ For example, to set the LV2 path to only load plugins bundled in the application
.. code-block:: c
- LilvNode* lv2_path = lilv_new_file_uri(world, NULL, "/myapp/lv2");
+ LilvNode* lv2_path = lilv_new_string(world, "/myapp/lv2");
lilv_world_set_option(world, LILV_OPTION_LV2_PATH, lv2_path);
diff --git a/src/lilv_internal.h b/src/lilv_internal.h
index 70c47de..2cef3aa 100644
--- a/src/lilv_internal.h
+++ b/src/lilv_internal.h
@@ -8,8 +8,6 @@
extern "C" {
#endif
-#include "lilv_config.h"
-
#include <lilv/lilv.h>
#include <lv2/core/lv2.h>
#include <serd/serd.h>