Skip to content

Commit

Permalink
Fix missing const char*
Browse files Browse the repository at this point in the history
  • Loading branch information
jerboaa committed Aug 30, 2024
1 parent e29f29a commit 35a4992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/hotspot/gtest/runtime/test_cgroupSubsystem_linux.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class TestController : public CgroupController {
char* _path;
public:
TestController(char* p): _path(p) {}
char* subsystem_path() override {
const char* subsystem_path() override {
return _path;
};
bool is_read_only() override {
Expand Down

0 comments on commit 35a4992

Please sign in to comment.