X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/85944624925b27cb9076e6ba46fc50c3f6bdd2a5..HEAD:/emufs/emufs.c diff --git a/emufs/emufs.c b/emufs/emufs.c index d79f559..3adab5e 100644 --- a/emufs/emufs.c +++ b/emufs/emufs.c @@ -257,7 +257,7 @@ EMUFS *emufs_abrir(const char *filename) fread(&tipo, sizeof(EMUFS_Tipo), 1, fp); /* Si no es un tipo conocido, sale. */ - if ((tipo != T1) && (tipo != T2) && (tipo != T3)) { + if ((tipo != T1) && (tipo != T2) && (tipo != T3) && (tipo != T4) && (tipo != T5)) { fclose(fp); return NULL; } @@ -348,7 +348,6 @@ int emufs_destruir(EMUFS *e) cur = e->indices; while (cur) { del = cur; - fprintf(stderr, "INDICE A ELIMINAR = %s\n", del->nombre); cur = cur->sig; emufs_indice_destruir(e, del); }