diff options
-rw-r--r-- | src/node.c | 2 | ||||
-rw-r--r-- | src/reader.c | 1 | ||||
-rw-r--r-- | src/serdi.c | 2 |
3 files changed, 2 insertions, 3 deletions
@@ -110,7 +110,7 @@ serd_node_new_uri(const SerdURI* uri, const SerdURI* base, SerdURI* out) if (base) { serd_uri_resolve(uri, base, &abs_uri); } - + const size_t len = serd_uri_string_length(&abs_uri); uint8_t* buf = malloc(len + 1); diff --git a/src/reader.c b/src/reader.c index 904422b0..1a66be01 100644 --- a/src/reader.c +++ b/src/reader.c @@ -307,7 +307,6 @@ public_node(SerdReader reader, const Node* private) return public_node_from_ref(reader, private->type, private->value); } - static inline bool emit_statement(SerdReader reader, const Node* g, const Node* s, const Node* p, const Node* o) diff --git a/src/serdi.c b/src/serdi.c index 9a366770..2d8f8e13 100644 --- a/src/serdi.c +++ b/src/serdi.c @@ -87,7 +87,7 @@ int print_version() { printf("serdi " SERD_VERSION " <http://drobilla.net/software/serd>\n"); - printf("Copyright (C) 2011 David Robillard <http://drobilla.net>.\n" + printf("Copyright 2011-2011 David Robillard <http://drobilla.net>.\n" "\nLicense: Simplified BSD License.\n" "This is free software; you are free to change and redistribute it." "\nThere is NO WARRANTY, to the extent permitted by law.\n"); |