We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9af916 commit 2b614b4Copy full SHA for 2b614b4
libc/test/src/unistd/fchown_test.cpp
@@ -46,5 +46,5 @@ TEST_F(LlvmLibcFchownTest, FchownSuccess) {
46
47
TEST_F(LlvmLibcFchownTest, ChownInvalidFileDescriptor) {
48
using LIBC_NAMESPACE::testing::ErrnoSetterMatcher::Fails;
49
- ASSERT_THAT(LIBC_NAMESPACE::chown(-1, 1000, 1000), Fails(ENOENT));
+ ASSERT_THAT(LIBC_NAMESPACE::fchown(-1, 1000, 1000), Fails(ENOENT));
50
}
0 commit comments