Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/mkfat/mkfat.c

    rb7fd2a0 r2456fd0  
    8686static void syntax_print(void);
    8787
    88 static errno_t fat_params_compute(struct fat_cfg *cfg);
    89 static errno_t fat_blocks_write(struct fat_cfg const *cfg, service_id_t service_id);
     88static int fat_params_compute(struct fat_cfg *cfg);
     89static int fat_blocks_write(struct fat_cfg const *cfg, service_id_t service_id);
    9090static void fat_bootsec_create(struct fat_cfg const *cfg, struct fat_bs *bs);
    9191
     
    9494        struct fat_cfg cfg;
    9595
    96         errno_t rc;
     96        int rc;
    9797        char *dev_path;
    9898        service_id_t service_id;
     
    252252}
    253253
    254 static errno_t fat_label_encode(void *dest, const char *src)
     254static int fat_label_encode(void *dest, const char *src)
    255255{
    256256        int i;
     
    284284 * file system params.
    285285 */
    286 static errno_t fat_params_compute(struct fat_cfg *cfg)
     286static int fat_params_compute(struct fat_cfg *cfg)
    287287{
    288288        uint32_t fat_bytes;
     
    356356
    357357/** Create file system with the given parameters. */
    358 static errno_t fat_blocks_write(struct fat_cfg const *cfg, service_id_t service_id)
     358static int fat_blocks_write(struct fat_cfg const *cfg, service_id_t service_id)
    359359{
    360360        aoff64_t addr;
     
    362362        int i;
    363363        uint32_t j;
    364         errno_t rc;
     364        int rc;
    365365        struct fat_bs bs;
    366366        fat_dentry_t *de;
Note: See TracChangeset for help on using the changeset viewer.