From cea53262290c9cdc5ec3da32f46bec4fc87dc9e8 Mon Sep 17 00:00:00 2001 From: "Emil J. Tywoniak" Date: Thu, 19 Dec 2024 15:55:51 +0100 Subject: [PATCH] yosys_common: fix gcc warning in #error directive --- kernel/yosys_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/yosys_common.h b/kernel/yosys_common.h index e0bd91ec897..25a97a8ddb0 100644 --- a/kernel/yosys_common.h +++ b/kernel/yosys_common.h @@ -134,7 +134,7 @@ YOSYS_NAMESPACE_BEGIN // Note: All headers included in hashlib.h must be included // outside of YOSYS_NAMESPACE before this or bad things will happen. #ifdef HASHLIB_H -# error You've probably included hashlib.h under two namespace paths. Bad idea. +# error "You've probably included hashlib.h under two namespace paths. Bad idea." #else # include "kernel/hashlib.h" # undef HASHLIB_H