sched_ext/selftests: Fix incorrect include guard comments

Fix two mismatched closing comments in header include guards:

- util.h: closing comment says __SCX_TEST_H__ but the guard is
  __SCX_TEST_UTIL_H__
- exit_test.h: closing comment has a spurious '#' character before
  the guard name

Signed-off-by: Cheng-Yang Chou <yphbchou0911@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
Cheng-Yang Chou 2026-03-14 12:20:51 +08:00 committed by Tejun Heo
parent e36bc38ebf
commit c959218c65
2 changed files with 2 additions and 2 deletions

View File

@ -17,4 +17,4 @@ enum exit_test_case {
NUM_EXITS,
};
#endif // # __EXIT_TEST_H__
#endif // __EXIT_TEST_H__

View File

@ -10,4 +10,4 @@
long file_read_long(const char *path);
int file_write_long(const char *path, long val);
#endif // __SCX_TEST_H__
#endif // __SCX_TEST_UTIL_H__