Conversation
There was a problem hiding this comment.
Pull request overview
This PR modifies the file header of src/backgroundrun.c by inserting a new first-line comment before the existing license block.
Changes:
- Add a standalone
//comment line at the very top ofsrc/backgroundrun.c.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -1,3 +1,4 @@ | |||
| // | |||
There was a problem hiding this comment.
The newly added standalone // line at the top of the file is an empty/no-op comment and pushes the license header down from the first line. This can break license/header scanners and is inconsistent with the established header pattern where files start directly with the block license comment (e.g., src/hostif/handlers/include/hostIf_IPClient_ReqHandler.h:1). Please remove this line unless there is a specific tooling requirement for it (in which case add an explanatory comment).
No description provided.