We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5989eff commit 17a7babCopy full SHA for 17a7bab
1 file changed
tests/unit/stdio.c
@@ -29,12 +29,12 @@ static void test_fileno(void) {
29
assert(fileno(stdin) == 0);
30
assert(fileno(stdout) == 1);
31
assert(fileno(stderr) == 2);
32
- const char* file = "/tmp/cpp2rust_fileno_test.tmp";
+ const char *file = "/tmp/cpp2rust_fileno_test.tmp";
33
FILE *fp = fopen(file, "wb");
34
assert(fp != NULL);
35
assert(fileno(fp) > 2);
36
fclose(fp);
37
- // TODO: uncomment when unlink is available
+ // TODO: uncomment when unlink is available
38
// assert(unlink(file) == 0);
39
}
40
0 commit comments