From: Nicolás Dimov Date: Wed, 19 May 2004 02:14:04 +0000 (+0000) Subject: arreglo errores de tipeo X-Git-Tag: svn_import_r684~226 X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/commitdiff_plain/697b196d3c16efc3fb024a0fba8f49c9c28fb1d0?ds=inline arreglo errores de tipeo --- diff --git a/emufs/b_plus.c b/emufs/b_plus.c index 1f99463..757d6c6 100644 --- a/emufs/b_plus.c +++ b/emufs/b_plus.c @@ -84,7 +84,7 @@ int emufs_b_plus_get_bloque(INDEXSPECS *idx, INDEX_DAT *query) { /* Cargado el query salgo de la func, luego habra que actualizar el .dat y luego volver a grabar el nodo en el arbol*/ /*grabo el nodo en el archivo*/ - b_plus_grabar_nodo(idx, &nodo, 0); + b_plus_grabar_nodo(idx, curnode, 0); /* librero el nodo */ free(curnode); return 0; @@ -126,9 +126,9 @@ int emufs_b_plus_get_bloque(INDEXSPECS *idx, INDEX_DAT *query) { } } else { /* si no era mayor, era menor */ /* guardo el bloque anterior porque me pase.. */ - if ( i == 0 ) + if ( i == 0 ){ /*CREAR UN NODO NUEVO PARA METER UNA CLAVE MENOR A TODAS */ - else { + } else { query->num_bloque = curnode->hijos[i-1]; free(curnode); return 0;