Skip to content

Fix report base for code scanning#1

Merged
AlexDenisov merged 6 commits into
mainfrom
report-base
Apr 5, 2026
Merged

Fix report base for code scanning#1
AlexDenisov merged 6 commits into
mainfrom
report-base

Conversation

@AlexDenisov

Copy link
Copy Markdown
Member

No description provided.

Comment thread range_tests.c Outdated
// Returns 1 if value is in the closed interval [min, max], 0 otherwise
int in_range(int value, int min, int max) {
return value >= min && value < max;
return value >= min && value <= max;

Check warning

Code scanning / mull

Replaces `>=` with `>` Warning

Replaces >= with >
Comment thread range_tests.c Fixed
@AlexDenisov
AlexDenisov merged commit c54f305 into main Apr 5, 2026
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants