if (((n == 1) || (n == 3)) && ((i+2)>=argc))
return BLOQUE_NO_DEFINIDO;
parametros.tipo_arch_art = n;
- parametros.tam_bloque_art = atoi(argv[i+2]);
- if (parametros.tam_bloque_art <= 0) return NULL_BLOCK_FOUND;
+ if (n != 2) {
+ if ((i+2) >= argc) return NULL_BLOCK_FOUND;
+ parametros.tam_bloque_art = atoi(argv[i+2]);
+ if (parametros.tam_bloque_art <= 0) return NULL_BLOCK_FOUND;
+ }
parametros.xml_art = i;
} else {
/* Ops, no hay mas parametros */
sprintf(s, "%lu bytes", stats.tam_archivo_bytes);
waddstr(win, s);
+ wattron(win, A_BOLD);
+ mvwaddstr(win, i++, 1, "Tamaño de Datos : ");
+ wattroff(win, A_BOLD);
+ sprintf(s, "%lu bytes (%.2f %%)", stats.tam_archivo_bytes-stats.info_control, (stats.tam_archivo_bytes-stats.info_control)*100.0f/(float)stats.tam_archivo_bytes);
+ waddstr(win, s);
+
wattron(win, A_BOLD);
mvwaddstr(win, i++, 1, "Tamaño de Info de Control : ");
wattroff(win, A_BOLD);
- sprintf(s, "%lu bytes", stats.info_control);
+ sprintf(s, "%lu bytes (%.2f %%)", stats.info_control, stats.info_control*100.0f/(float)stats.tam_archivo_bytes);
waddstr(win, s);
wattron(win, A_BOLD);