]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo3_main.c
* BUGFIX : en tipo3 cuando pedia lugar estaba faltando agregar sizeof(EMUFS_REG_ID)
[z.facultad/75.06/emufs.git] / emufs / tipo3_main.c
index 1ecd3705cb119d5f9d3ac28145029e7cc082e493..9be9a2dcd3a4c97676b4b7eed73f83c88ad2f3a2 100644 (file)
@@ -41,6 +41,7 @@ int main(int argc, char *argv[])
 {
        EMUFS *fp;
        EMUFS_REG_ID n1, n2, n3, n4, n5, n6, n7, n8;
+       EMUFS_REG_SIZE size;
        char a[100];
        char b[100];
        char c[100];
@@ -89,7 +90,7 @@ int main(int argc, char *argv[])
 
        fp->borrar_registro(fp, n3);
        printf("borre el registro de id = %lu\n",n3);
-       b_ptr = fp->leer_registro(fp, n2, &err);
+       b_ptr = fp->leer_registro(fp, n2, &size, &err);
 
        printf("Recuperado : %s\n", b_ptr);