]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
debug: Change debug masknames variable name
authorTobias Stoeckmann <tobias@stoeckmann.org>
Fri, 3 Apr 2026 10:31:44 +0000 (12:31 +0200)
committerTobias Stoeckmann <tobias@stoeckmann.org>
Tue, 7 Apr 2026 10:09:29 +0000 (12:09 +0200)
The concatenation for the mask itself is lib_debug_mask, so do the same
for masknames, i.e. add debug into its name.

Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
include/debug.h

index 3e3e76ed23934c5576ebef8243bac02d5e9f85b4..6ed54451490e0cde419768140634743772b966d0 100644 (file)
@@ -56,7 +56,7 @@ struct ul_debug_maskname {
  */
 
 #define UL_DEBUG_EMPTY_MASKNAMES {{ NULL, 0, NULL }}
-#define UL_DEBUG_MASKNAMES(lib)        lib ## _masknames
+#define UL_DEBUG_MASKNAMES(lib)        lib ## _debug_masknames
 #define UL_DEBUG_DEFINE_MASKNAMES(lib) \
        static const struct ul_debug_maskname UL_DEBUG_MASKNAMES(lib)[]