]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
* BUGFIX : habia 2 parametros mal al llamar a IDX_AGREGAR en tipo3 grabar_bloque
authorRicardo Markiewicz <gazer.arg@gmail.com>
Sun, 11 Apr 2004 04:12:48 +0000 (04:12 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Sun, 11 Apr 2004 04:12:48 +0000 (04:12 +0000)
emufs/tipo3.c

index 26ae4267ded0c0b7aa452c0c9b4396a0809f8fe9..c31068a2b38b692bb367466dc411b28afb8fee9c 100644 (file)
@@ -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;
        }