]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/emufs_view.c
no anda perfecto pero ahora actualiza mucho mejor el fsc
[z.facultad/75.06/emufs.git] / emufs_gui / emufs_view.c
index 06826da3a23eb6d18365de9cb169c24ed6c3ebd1..e8af9fcfb95faae3513e389c10fa39e5ff5c98e3 100644 (file)
@@ -680,32 +680,7 @@ void ver_estadisticas(EMUFS *fp)
                        waddstr(win, s);
        }
 
-       if ((fp->tipo == T1) || (fp->tipo == T3)) {
-               wattron(win, A_BOLD);
-               mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
-               wattroff(win, A_BOLD);
-               sprintf(s, "%lu", stats.cant_bloques);
-               waddstr(win, s);
-       }
-       
-       wattron(win, A_BOLD);
-       mvwaddstr(win, i++, 1, "Cant. Registros : ");
-       wattroff(win, A_BOLD);
-       sprintf(s, "%lu", stats.cant_registros);
-       waddstr(win, s);
 
-       wattron(win, A_BOLD);
-       mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
-       wattroff(win, A_BOLD);
-       sprintf(s, "%lu bytes", stats.tam_archivo);
-       waddstr(win, s);
-
-       wattron(win, A_BOLD);
-       mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
-       wattroff(win, A_BOLD);
-       sprintf(s, "%lu bytes", stats.tam_archivos_aux);
-       waddstr(win, s);
-       
        wattron(win, A_BOLD);
        mvwaddstr(win, i++, 1, "Tamaño ocupado por datos : ");
        wattroff(win, A_BOLD);
@@ -744,6 +719,31 @@ void ver_estadisticas(EMUFS *fp)
        sprintf(s, "%lu bytes", stats.min_fs);
        waddstr(win, s);
 
+       wattron(win, A_BOLD);
+       mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
+       wattroff(win, A_BOLD);
+       sprintf(s, "%lu bytes", stats.tam_archivo);
+       waddstr(win, s);
+       
+       wattron(win, A_BOLD);
+       mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
+       wattroff(win, A_BOLD);
+       sprintf(s, "%lu bytes", stats.tam_archivos_aux);
+       waddstr(win, s);
+       
+       if ((fp->tipo == T1) || (fp->tipo == T3)) {
+               wattron(win, A_BOLD);
+               mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
+               wattroff(win, A_BOLD);
+               sprintf(s, "%lu", stats.cant_bloques);
+               waddstr(win, s);
+       }
+       
+       wattron(win, A_BOLD);
+       mvwaddstr(win, i++, 1, "Cant. Registros : ");
+       wattroff(win, A_BOLD);
+       sprintf(s, "%lu", stats.cant_registros);
+       waddstr(win, s);
        
        wattron(win, A_BLINK);
        mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");