Skip to content

Commit 17a7bab

Browse files
committed
format
1 parent 5989eff commit 17a7bab

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/unit/stdio.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ static void test_fileno(void) {
2929
assert(fileno(stdin) == 0);
3030
assert(fileno(stdout) == 1);
3131
assert(fileno(stderr) == 2);
32-
const char* file = "/tmp/cpp2rust_fileno_test.tmp";
32+
const char *file = "/tmp/cpp2rust_fileno_test.tmp";
3333
FILE *fp = fopen(file, "wb");
3434
assert(fp != NULL);
3535
assert(fileno(fp) > 2);
3636
fclose(fp);
37-
// TODO: uncomment when unlink is available
37+
// TODO: uncomment when unlink is available
3838
// assert(unlink(file) == 0);
3939
}
4040

0 commit comments

Comments
 (0)