In C, there are two ways to write comments:
// This is a single-line comment
/*
This is a multi-line comment
I can just keep adding lines
and it will still be a comment
*/
/* and */ are used to denote the beginning and end of a multi-line comment.
Looks like someone on the team doesn't know how to terminate a comment.
Fix the bug.