Changeset 3dd148d in mainline for uspace/srv/fs/cdfs/cdfs_ops.c


Ignore:
Timestamp:
2013-07-29T15:15:49Z (12 years ago)
Author:
Manuele Conti <conti.ma@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
736b07b
Parents:
a1c95da
Message:

Change stafs function operation to allow correct error handling.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/cdfs/cdfs_ops.c

    ra1c95da r3dd148d  
    625625}
    626626
    627 static uint32_t cdfs_size_block(service_id_t service_id)
    628 {
    629         uint32_t block_size = BLOCK_SIZE;
    630         return block_size;
     627static int cdfs_size_block(service_id_t service_id, uint32_t *size)
     628{
     629        *size = BLOCK_SIZE;
     630
     631        return EOK;
    631632}
    632633
Note: See TracChangeset for help on using the changeset viewer.