X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/73a6ae0f1a0f50a482d164f24d5894105b4aea9f..483a5117682096de3de466a07f2e409a2166f164:/emufs/indice_bplus.h?ds=sidebyside diff --git a/emufs/indice_bplus.h b/emufs/indice_bplus.h index bb823e2..73b3e80 100644 --- a/emufs/indice_bplus.h +++ b/emufs/indice_bplus.h @@ -18,7 +18,7 @@ typedef struct _index_dat_ { typedef struct nodo_b_plus { int nivel; /** Nivel del nodo */ int cant_claves; /** Cantidad de claves en el nodo */ - int *claves; /** Claves del nodo */ + CLAVE *claves; /** Claves del nodo */ int *hijos; /** Para nodo interno, ref nodos sucesores. Nodo hoja, ref a nro bloque en .dat */ } NODO_B_PLUS;