From 1e9ca18c6f6aecb8c45efb8ed2129ede2e6eea27 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Wed, 8 Oct 2025 19:37:20 +0100 Subject: [PATCH] Refactor aaruf_open function to improve readability and maintainability --- src/open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/open.c b/src/open.c index 1be149f..7a5228b 100644 --- a/src/open.c +++ b/src/open.c @@ -128,7 +128,7 @@ static void cleanup_open_failure(aaruformatContext *ctx) * @warning Some memory allocations (version strings) are optional and failure doesn't * prevent opening, but may affect functionality that depends on version information. */ -void *aaruf_open(const char *filepath) +void *aaruf_open(const char *filepath) // NOLINT(readability-function-size) { aaruformatContext *ctx = NULL; int error_no = 0;