summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lilv/lilv.h2
-rw-r--r--lilv/lilvmm.hpp2
-rw-r--r--src/collections.c2
-rw-r--r--src/instance.c2
-rw-r--r--src/lib.c2
-rw-r--r--src/lilv_internal.h2
-rw-r--r--src/plugin.c2
-rw-r--r--src/pluginclass.c2
-rw-r--r--src/port.c2
-rw-r--r--src/query.c4
-rw-r--r--src/ui.c2
-rw-r--r--src/util.c2
-rw-r--r--test/test_plugin.c2
-rw-r--r--utils/lilv-bench.c2
-rw-r--r--utils/lv2info.c2
-rw-r--r--utils/lv2ls.c4
16 files changed, 18 insertions, 18 deletions
diff --git a/lilv/lilv.h b/lilv/lilv.h
index b86a884..0d529c8 100644
--- a/lilv/lilv.h
+++ b/lilv/lilv.h
@@ -1,5 +1,5 @@
/*
- Copyright 2007-2011 David Robillard <http://drobilla.net>
+ Copyright 2007-2014 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/lilv/lilvmm.hpp b/lilv/lilvmm.hpp
index adb0cb6..b9b3a69 100644
--- a/lilv/lilvmm.hpp
+++ b/lilv/lilvmm.hpp
@@ -1,5 +1,5 @@
/*
- Copyright 2007-2011 David Robillard <http://drobilla.net>
+ Copyright 2007-2014 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/src/collections.c b/src/collections.c
index 6437c3e..95d8fe6 100644
--- a/src/collections.c
+++ b/src/collections.c
@@ -1,5 +1,5 @@
/*
- Copyright 2008-2011 David Robillard <http://drobilla.net>
+ Copyright 2008-2014 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/src/instance.c b/src/instance.c
index 21f3d03..88a94fb 100644
--- a/src/instance.c
+++ b/src/instance.c
@@ -1,5 +1,5 @@
/*
- Copyright 2007-2012 David Robillard <http://drobilla.net>
+ Copyright 2007-2014 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/src/lib.c b/src/lib.c
index 314a943..6eb2813 100644
--- a/src/lib.c
+++ b/src/lib.c
@@ -1,5 +1,5 @@
/*
- Copyright 2012 David Robillard <http://drobilla.net>
+ Copyright 2012-2014 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/src/lilv_internal.h b/src/lilv_internal.h
index 9e9de2f..ed2c13a 100644
--- a/src/lilv_internal.h
+++ b/src/lilv_internal.h
@@ -1,5 +1,5 @@
/*
- Copyright 2007-2011 David Robillard <http://drobilla.net>
+ Copyright 2007-2014 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/src/plugin.c b/src/plugin.c
index 0d97290..f88b099 100644
--- a/src/plugin.c
+++ b/src/plugin.c
@@ -1,5 +1,5 @@
/*
- Copyright 2007-2011 David Robillard <http://drobilla.net>
+ Copyright 2007-2014 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/src/pluginclass.c b/src/pluginclass.c
index 599d97a..f6f6cc6 100644
--- a/src/pluginclass.c
+++ b/src/pluginclass.c
@@ -1,5 +1,5 @@
/*
- Copyright 2007-2011 David Robillard <http://drobilla.net>
+ Copyright 2007-2014 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/src/port.c b/src/port.c
index b1eccf6..6bf8fc7 100644
--- a/src/port.c
+++ b/src/port.c
@@ -1,5 +1,5 @@
/*
- Copyright 2007-2011 David Robillard <http://drobilla.net>
+ Copyright 2007-2014 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/src/query.c b/src/query.c
index 09fa6f2..0d06533 100644
--- a/src/query.c
+++ b/src/query.c
@@ -1,5 +1,5 @@
/*
- Copyright 2007-2011 David Robillard <http://drobilla.net>
+ Copyright 2007-2014 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
@@ -129,7 +129,7 @@ lilv_nodes_from_stream_objects(LilvWorld* world,
LilvNodes* values = lilv_nodes_new();
FOREACH_MATCH(stream) {
const SordNode* value = sord_iter_get_node(stream, field);
- LilvNode* node = lilv_node_new_from_node(world, value);
+ LilvNode* node = lilv_node_new_from_node(world, value);
if (node) {
zix_tree_insert((ZixTree*)values, node, NULL);
}
diff --git a/src/ui.c b/src/ui.c
index a11f0a5..0f4f2f6 100644
--- a/src/ui.c
+++ b/src/ui.c
@@ -1,5 +1,5 @@
/*
- Copyright 2007-2011 David Robillard <http://drobilla.net>
+ Copyright 2007-2014 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/src/util.c b/src/util.c
index 0ba5e73..af92134 100644
--- a/src/util.c
+++ b/src/util.c
@@ -1,5 +1,5 @@
/*
- Copyright 2007-2011 David Robillard <http://drobilla.net>
+ Copyright 2007-2014 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/test/test_plugin.c b/test/test_plugin.c
index 9f78f4e..edcc5ab 100644
--- a/test/test_plugin.c
+++ b/test/test_plugin.c
@@ -1,6 +1,6 @@
/*
Lilv Test Plugin
- Copyright 2011 David Robillard <d@drobilla.net>
+ Copyright 2011-2012 David Robillard <d@drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/utils/lilv-bench.c b/utils/lilv-bench.c
index 432e5fd..c0355df 100644
--- a/utils/lilv-bench.c
+++ b/utils/lilv-bench.c
@@ -1,5 +1,5 @@
/*
- Copyright 2007-2011 David Robillard <http://drobilla.net>
+ Copyright 2007-2012 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/utils/lv2info.c b/utils/lv2info.c
index 3bd79f4..52c5aac 100644
--- a/utils/lv2info.c
+++ b/utils/lv2info.c
@@ -323,7 +323,7 @@ print_version(void)
{
printf(
"lv2info (lilv) " LILV_VERSION "\n"
- "Copyright 2007-2011 David Robillard <http://drobilla.net>\n"
+ "Copyright 2007-2014 David Robillard <http://drobilla.net>\n"
"License: <http://www.opensource.org/licenses/isc-license>\n"
"This is free software: you are free to change and redistribute it.\n"
"There is NO WARRANTY, to the extent permitted by law.\n");
diff --git a/utils/lv2ls.c b/utils/lv2ls.c
index 6f898d5..1f007f1 100644
--- a/utils/lv2ls.c
+++ b/utils/lv2ls.c
@@ -1,5 +1,5 @@
/*
- Copyright 2007-2011 David Robillard <http://drobilla.net>
+ Copyright 2007-2012 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
@@ -41,7 +41,7 @@ print_version(void)
{
printf(
"lv2ls (lilv) " LILV_VERSION "\n"
- "Copyright 2007-2011 David Robillard <http://drobilla.net>\n"
+ "Copyright 2007-2012 David Robillard <http://drobilla.net>\n"
"License: <http://www.opensource.org/licenses/isc-license>\n"
"This is free software: you are free to change and redistribute it.\n"
"There is NO WARRANTY, to the extent permitted by law.\n");