From 697b196d3c16efc3fb024a0fba8f49c9c28fb1d0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Nicol=C3=A1s=20Dimov?= Date: Wed, 19 May 2004 02:14:04 +0000 Subject: [PATCH] arreglo errores de tipeo --- emufs/b_plus.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.43.0