]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo2.c
Se cambia tam_archivo_aux por tam_archivos_aux (me parece mas claro).
[z.facultad/75.06/emufs.git] / emufs / tipo2.c
index a1925db122a40d149eee178ba9f745543361ca3e..2e70d1218838e300957f3e0691bb69456aa837c7 100644 (file)
@@ -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;