Skip to content

Commit d25618f

Browse files
committed
run clang-format
1 parent 8252739 commit d25618f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libc/test/src/sys/ioctl/linux/ioctl_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ TEST(LlvmLibcSysIoctlTest, InvalidCommandAndFIONREAD) {
3030
constexpr const char TEST_MSG[] = "ioctl test";
3131
constexpr int TEST_MSG_SIZE = sizeof(TEST_MSG) - 1;
3232
auto TEST_FILE = libc_make_test_file_path(TEST_FILE_NAME);
33-
int new_test_file_fd =
34-
LIBC_NAMESPACE::open(TEST_FILE, O_CREAT | O_WRONLY, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
33+
int new_test_file_fd = LIBC_NAMESPACE::open(
34+
TEST_FILE, O_CREAT | O_WRONLY, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
3535
ASSERT_THAT(
3636
(int)LIBC_NAMESPACE::write(new_test_file_fd, TEST_MSG, TEST_MSG_SIZE),
3737
Succeeds(TEST_MSG_SIZE));

0 commit comments

Comments
 (0)