diff options
Diffstat (limited to 'Tests/LibC/TestRealpath.cpp')
-rw-r--r-- | Tests/LibC/TestRealpath.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/LibC/TestRealpath.cpp b/Tests/LibC/TestRealpath.cpp index c0fb283890..21a1d527f8 100644 --- a/Tests/LibC/TestRealpath.cpp +++ b/Tests/LibC/TestRealpath.cpp @@ -21,7 +21,7 @@ static constexpr char PATH_LOREM_250[] = "This-is-an-annoyingly-long-name-that-s static constexpr size_t ITERATION_DEPTH = 17; -static void check_result(const char* what, const String& expected, const char* actual) +static void check_result(char const* what, String const& expected, char const* actual) { if (expected != actual) FAIL(String::formatted("Expected {} to be \"{}\" ({} characters)", what, actual, actual ? strlen(actual) : 0)); |