X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/7a1f4e670b7f52961de1c6c0b868aa836cceae04..f00458382f8b687eeef68f9f5fe9e9245a4d5fb5:/emufs/tipo2.c diff --git a/emufs/tipo2.c b/emufs/tipo2.c index a1925db..2e70d12 100644 --- a/emufs/tipo2.c +++ b/emufs/tipo2.c @@ -252,7 +252,7 @@ EMUFS_Estadisticas emufs_tipo2_leer_estadisticas(EMUFS *efs) /* Inicializo las stats por si hay error somewhere */ stats.tam_archivo = 0; - stats.tam_archivo_aux = 0; + stats.tam_archivos_aux = 0; stats.tam_info_control_dat = 0; stats.media_fs = 0; stats.total_fs = 0; @@ -283,7 +283,7 @@ EMUFS_Estadisticas emufs_tipo2_leer_estadisticas(EMUFS *efs) stats.tam_info_control_dat = (sizeof(EMUFS_REG_ID) + sizeof(EMUFS_REG_SIZE)) * stats.cant_registros + sizeof(EMUFS_Tipo); /* Cantidad de bytes en info de control archivos auxiliares */ - stats.tam_archivo_aux = emufs_idx_get_file_size(efs,&err1) + emufs_fsc_get_file_size(efs,&err2) + emufs_did_get_file_size(efs,&err3); + stats.tam_archivos_aux = emufs_idx_get_file_size(efs,&err1) + emufs_fsc_get_file_size(efs,&err2) + emufs_did_get_file_size(efs,&err3); if (err1 || err2 || err3) { PERR("Hubo problemas en lectura de filesize archivos auxiliares"); return stats;