X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/ca0a546df5b5730a8d5dd899391bd0f194f028fa..2470cecbf9f0f40714b9f50d9a76d187abe336e6:/emufs/emufs.c diff --git a/emufs/emufs.c b/emufs/emufs.c index 8ad9604..712ae91 100644 --- a/emufs/emufs.c +++ b/emufs/emufs.c @@ -374,7 +374,7 @@ int debug_ver_estadisticas(EMUFS* efs) return 0; } -int emufs_agregar_indice(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque) +int emufs_agregar_indice(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque, int str_offset) { INDICE *tmp; int error=0; @@ -408,7 +408,7 @@ int emufs_agregar_indice(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDIC /* Creo el nuevo indice */ PERR("Creando indice\n"); - tmp = emufs_indice_crear(emu, nombre, funcion, tipo, tipo_dato, offset, tam_bloque); + tmp = emufs_indice_crear(emu, nombre, funcion, tipo, tipo_dato, offset, tam_bloque, str_offset); /* Guardo la info del indice para poder abrir despues el archivo */ guardar_indice(emu, nombre, funcion, tipo, tipo_dato, offset, tam_bloque);