diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/.clang-tidy | 3 | ||||
-rw-r--r-- | src/lilv_config.h | 2 | ||||
-rw-r--r-- | src/lilv_internal.h | 2 | ||||
-rw-r--r-- | src/plugin.c | 2 |
4 files changed, 4 insertions, 5 deletions
diff --git a/src/.clang-tidy b/src/.clang-tidy index 9cc7cdc..0d90367 100644 --- a/src/.clang-tidy +++ b/src/.clang-tidy @@ -1,4 +1,4 @@ -# Copyright 2020-2024 David Robillard <d@drobilla.net> +# Copyright 2020-2025 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC Checks: > @@ -7,6 +7,7 @@ Checks: > -bugprone-narrowing-conversions, -cert-err33-c, -clang-analyzer-optin.core.EnumCastOutOfRange, + -clang-analyzer-optin.taint.TaintedAlloc, -clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling, -clang-analyzer-valist.Uninitialized, -concurrency-mt-unsafe, diff --git a/src/lilv_config.h b/src/lilv_config.h index 2f7c498..1198ce2 100644 --- a/src/lilv_config.h +++ b/src/lilv_config.h @@ -5,7 +5,7 @@ #define LILV_CONFIG_H // Define version unconditionally so a warning will catch a mismatch -#define LILV_VERSION "0.24.25" +#define LILV_VERSION "0.24.27" // Separator between entries in variables like PATH #ifndef LILV_PATH_SEP 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> diff --git a/src/plugin.c b/src/plugin.c index d828f6f..c82bb65 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -307,7 +307,7 @@ lilv_plugin_load_ports_if_necessary(const LilvPlugin* const_plugin) plugin->num_ports = this_index + 1; } - // Havn't seen this port yet, add it to array + // Haven't seen this port yet, add it to array if (!this_port) { this_port = lilv_port_new( plugin->world, port, this_index, lilv_node_as_string(symbol)); |