mirror of
https://github.com/lvgl/lvgl.git
synced 2026-05-28 13:36:27 +08:00
test(fs): fix typo, change rd -> r in fopen
This commit is contained in:
@@ -32,7 +32,7 @@ void test_read(void)
|
|||||||
char cur[512];
|
char cur[512];
|
||||||
getcwd(cur, 512);
|
getcwd(cur, 512);
|
||||||
errno = 0;
|
errno = 0;
|
||||||
void * a = fopen("src/test_files/readtest.txt", "rd");
|
void * a = fopen("src/test_files/readtest.txt", "r");
|
||||||
printf("%s, %d, %p\n", cur, errno, a);
|
printf("%s, %d, %p\n", cur, errno, a);
|
||||||
fclose(a);
|
fclose(a);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user