Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions chb/cmdline/reportcmds.py
Original file line number Diff line number Diff line change
Expand Up @@ -1321,7 +1321,7 @@ def include_target(target: 'CallTarget') -> bool:
str(instr), str(dstoffset))
continue
else:
chklogger.logger.warning(
chklogger.logger.info(
"Stackbuffer for %s at offset %s does not have a size, "
+ "but stackframe allows a buffer of %s",
str(instr), str(dstoffset), str(buffersize))
Expand All @@ -1335,7 +1335,7 @@ def include_target(target: 'CallTarget') -> bool:
str(instr), str(dstoffset))
continue
else:
chklogger.logger.warning(
chklogger.logger.info(
"Stackbuffer size for %s at offset %s is reported to be 1 "
+ "; replacing it by the size derived from the stacklayout",
str(instr), str(dstoffset))
Expand Down