diff options
| author | gkostka <kostka.grzegorz@gmail.com> | 2017-04-05 19:47:04 +0200 |
|---|---|---|
| committer | gkostka <kostka.grzegorz@gmail.com> | 2017-04-05 19:50:41 +0200 |
| commit | 9ae6dcb7e063d495267e7a53ddecb4d8356645ba (patch) | |
| tree | 6ced8f349cdd1e1b370ba2ba2713936c7497ea1e /fs_test | |
| parent | dc8bef53210b3d3bf87cf30d8f7dc99536c57414 (diff) | |
Name refactiring inside file_windows module
Diffstat (limited to 'fs_test')
| -rw-r--r-- | fs_test/lwext4_generic.c | 4 | ||||
| -rw-r--r-- | fs_test/lwext4_mbr.c | 4 | ||||
| -rw-r--r-- | fs_test/lwext4_mkfs.c | 4 | ||||
| -rw-r--r-- | fs_test/lwext4_server.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/fs_test/lwext4_generic.c b/fs_test/lwext4_generic.c index cae40bd..a9bfb1b 100644 --- a/fs_test/lwext4_generic.c +++ b/fs_test/lwext4_generic.c @@ -130,8 +130,8 @@ static bool open_linux(void) static bool open_windows(void) { #ifdef WIN32 - ext4_io_raw_filename(input_name); - bd = ext4_io_raw_dev_get(); + file_windows_name_set(input_name); + bd = file_windows_dev_get(); if (!bd) { printf("open_winpartition: fail\n"); return false; diff --git a/fs_test/lwext4_mbr.c b/fs_test/lwext4_mbr.c index b84b697..9bb19b8 100644 --- a/fs_test/lwext4_mbr.c +++ b/fs_test/lwext4_mbr.c @@ -77,8 +77,8 @@ static bool open_linux(void) static bool open_windows(void) { #ifdef WIN32 - ext4_io_raw_filename(input_name); - bd = ext4_io_raw_dev_get(); + file_windows_name_set(input_name); + bd = file_windows_dev_get(); if (!bd) { printf("open_winpartition: fail\n"); return false; diff --git a/fs_test/lwext4_mkfs.c b/fs_test/lwext4_mkfs.c index be37ff0..781e8dc 100644 --- a/fs_test/lwext4_mkfs.c +++ b/fs_test/lwext4_mkfs.c @@ -87,8 +87,8 @@ static bool open_linux(void) static bool open_windows(void) { #ifdef WIN32 - ext4_io_raw_filename(input_name); - bd = ext4_io_raw_dev_get(); + file_windows_name_set(input_name); + bd = file_windows_dev_get(); if (!bd) { printf("open_winpartition: fail\n"); return false; diff --git a/fs_test/lwext4_server.c b/fs_test/lwext4_server.c index fadeaaa..2c923ba 100644 --- a/fs_test/lwext4_server.c +++ b/fs_test/lwext4_server.c @@ -393,8 +393,8 @@ static int device_register(const char *p) #ifdef WIN32 if (winpart) { - ext4_io_raw_filename(ext4_fname); - bd = ext4_io_raw_dev_get(); + file_windows_name_set(ext4_fname); + bd = file_windows_dev_get(); } else #endif |
