Skip to content

Commit

Permalink
fixed wrong quote usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
mvandervoord committed Feb 21, 2024
1 parent 083bbd6 commit 3232b72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cmock_header_parser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -364,9 +364,9 @@ def parse_functions(filename, source)
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
Expand Down

0 comments on commit 3232b72

Please sign in to comment.