From: Ricardo Markiewicz Date: Sun, 11 Apr 2004 04:12:48 +0000 (+0000) Subject: * BUGFIX : habia 2 parametros mal al llamar a IDX_AGREGAR en tipo3 grabar_bloque X-Git-Tag: svn_import_r684~553 X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/commitdiff_plain/ec7d4a565379cd88c256198788960d559326e47a?ds=inline * BUGFIX : habia 2 parametros mal al llamar a IDX_AGREGAR en tipo3 grabar_bloque --- diff --git a/emufs/tipo3.c b/emufs/tipo3.c index 26ae426..c31068a 100644 --- a/emufs/tipo3.c +++ b/emufs/tipo3.c @@ -188,7 +188,7 @@ EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE t } /*actualizo el archivo de bloques y registros*/ - if ( emufs_idx_agregar(emu, num_bloque, ID_aux) != 0 ){ + if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){ free(bloque); return -1; }