Skip to content
Open
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
1 change: 1 addition & 0 deletions src/rrdCommandSanity.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
int updateBackgroundCmd(char * str)
{
int i = 0;


Copy link

Copilot AI Feb 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change introduces consecutive blank lines. The code now has two consecutive blank lines (line 33 and line 34) between the variable declaration and the null check. Multiple consecutive blank lines are generally considered poor coding style and reduce code readability. Consider removing one of these blank lines to maintain clean formatting.

Suggested change

Copilot uses AI. Check for mistakes.
if(str == NULL)
{
Expand Down
Loading