mirror of
https://github.com/lvgl/lvgl.git
synced 2026-05-23 07:46:36 +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];
|
||||
getcwd(cur, 512);
|
||||
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);
|
||||
fclose(a);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user