X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/63f9cc2172df9d346457685096b4de200c084e9e..b9633652f53d82a066f8d2697a99cbd7f1a50866:/emufs/emufs.c?ds=sidebyside diff --git a/emufs/emufs.c b/emufs/emufs.c index ad14955..76260ac 100644 --- a/emufs/emufs.c +++ b/emufs/emufs.c @@ -349,6 +349,7 @@ int emufs_agregar_indice(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDIC /* Verifico que no existe un indice con el mismo nombre */ /* y que no exista un indice primario */ + PERR("Agregando indice"); tmp = emu->indices; while (tmp) { if (strcmp(tmp->nombre, nombre)==0) { @@ -368,14 +369,12 @@ int emufs_agregar_indice(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDIC break; case 2: PERR("EMUFS ya tiene indice primario!!"); - break; - default: - PERR("Error no esperado!!"); } return 0; } /* Creo el nuevo indice */ + PERR("Creando indice\n"); tmp = emufs_indice_crear(emu, nombre, funcion, tipo, tipo_dato, offset, tam_bloque); if (tmp == NULL) return 0;