Skip to content

Commit 8fd4094

Browse files
authored
Merge pull request #4825 from YosysHQ/emil/fix-gcc-error-directive
yosys_common: fix gcc warning in #error directive
2 parents 301d967 + cea5326 commit 8fd4094

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/yosys_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ YOSYS_NAMESPACE_BEGIN
134134
// Note: All headers included in hashlib.h must be included
135135
// outside of YOSYS_NAMESPACE before this or bad things will happen.
136136
#ifdef HASHLIB_H
137-
# error You've probably included hashlib.h under two namespace paths. Bad idea.
137+
# error "You've probably included hashlib.h under two namespace paths. Bad idea."
138138
#else
139139
# include "kernel/hashlib.h"
140140
# undef HASHLIB_H

0 commit comments

Comments
 (0)