Changeset 1420cae9 in mainline
- Timestamp:
- 2018-05-11T07:25:22Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e4fe58f
- Parents:
- e8975278
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat_ops.c
re8975278 r1420cae9 91 91 static errno_t exfat_total_block_count(service_id_t, uint64_t *); 92 92 static errno_t exfat_free_block_count(service_id_t, uint64_t *); 93 static void exfat_fsinfo(exfat_bs_t *, service_id_t); 93 94 94 95 /* … … 1238 1239 1239 1240 /* Print debug info */ 1240 staticvoid exfat_fsinfo(exfat_bs_t *bs, service_id_t service_id)1241 void exfat_fsinfo(exfat_bs_t *bs, service_id_t service_id) 1241 1242 { 1242 1243 printf("exFAT file system mounted\n"); … … 1262 1263 printf("Clst %d: %x", i, clst); 1263 1264 if (i >= 2) 1264 printf(", Bitmap: %d\n", bitmap_is_free(bs, service_id, i) != EOK);1265 printf(", Bitmap: %d\n", exfat_bitmap_is_free(bs, service_id, i) != EOK); 1265 1266 else 1266 1267 printf("\n");
Note:
See TracChangeset
for help on using the changeset viewer.