fixed wrong quote usage.

This commit is contained in:
Mark VanderVoord
2024-02-21 14:58:23 -05:00
parent 083bbd6a38
commit 3232b72205
+2 -2
View File
@@ -364,9 +364,9 @@ class CMockHeaderParser
if funcs.empty?
case @when_no_prototypes
when :error
raise 'ERROR: No function prototypes found by CMock in #{filename}'
raise "ERROR: No function prototypes found by CMock in #{filename}"
when :warn
puts 'WARNING: No function prototypes found by CMock in #{filename}' unless @verbosity < 1
puts "WARNING: No function prototypes found by CMock in #{filename}" unless @verbosity < 1
end
end
funcs