Changeset 132ab5d1 in mainline for uspace/srv/fs/exfat/exfat_directory.c
- Timestamp:
- 2018-01-30T03:20:45Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
uspace/srv/fs/exfat/exfat_directory.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat_directory.c
r8bfb163 r132ab5d1 43 43 #include <byteorder.h> 44 44 #include <mem.h> 45 #include < malloc.h>45 #include <stdlib.h> 46 46 #include <str.h> 47 47 #include <align.h> … … 218 218 uint16_t wname[EXFAT_FILENAME_LEN + 1]; 219 219 exfat_dentry_t *d = NULL; 220 int rc, i; 220 int rc; 221 int i; 221 222 size_t offset = 0; 222 223 aoff64_t start_pos = 0; … … 305 306 exfat_stream_dentry_t *ds) 306 307 { 307 int rc, i, count; 308 int rc; 309 int i, count; 308 310 exfat_dentry_t *array = NULL, *de; 309 311 aoff64_t pos = di->pos; … … 372 374 exfat_dentry_t df, ds, *de; 373 375 uint16_t wname[EXFAT_FILENAME_LEN + 1]; 374 int rc, i; 376 int rc; 377 int i; 375 378 size_t uctable_chars, j; 376 379 aoff64_t pos; … … 473 476 int exfat_directory_erase_file(exfat_directory_t *di, aoff64_t pos) 474 477 { 475 int rc, count; 478 int rc; 479 int count; 476 480 exfat_dentry_t *de; 477 481
Note:
See TracChangeset
for help on using the changeset viewer.
