From ec7d4a565379cd88c256198788960d559326e47a Mon Sep 17 00:00:00 2001 From: Ricardo Markiewicz Date: Sun, 11 Apr 2004 04:12:48 +0000 Subject: [PATCH] * BUGFIX : habia 2 parametros mal al llamar a IDX_AGREGAR en tipo3 grabar_bloque --- emufs/tipo3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.43.0