From 86f7c9ae2553312c3ed0e33c6f84de9afa71179f Mon Sep 17 00:00:00 2001 From: "iliya.saroukha" <iliya.saroukhanian@etu.hesge.ch> Date: Sat, 1 Feb 2025 19:01:27 +0100 Subject: [PATCH] fix: had to include linux/string.h so thath DEBUG_FMT would work --- proto/debug/debug.h | 1 + 1 file changed, 1 insertion(+) diff --git a/proto/debug/debug.h b/proto/debug/debug.h index 11f6c5a..c223d05 100644 --- a/proto/debug/debug.h +++ b/proto/debug/debug.h @@ -1,6 +1,7 @@ #pragma once #include <linux/kernel.h> #include <linux/printk.h> +#include <linux/string.h> // This GCC extension removes the trailing comma when __VA_ARGS__ is empty. This // ensures the macro works whether or not extra arguments are provided. -- GitLab