From: Ricardo Markiewicz Date: Sun, 11 Apr 2004 03:29:10 +0000 (+0000) Subject: * Se arregla para que todo compile. X-Git-Tag: svn_import_r684~557 X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/commitdiff_plain/eb6f85cae7e6a889c11f93203d8281b9ac64b7ce * Se arregla para que todo compile. --- diff --git a/emufs/tipo1_test.c b/emufs/tipo1_test.c index 188ef8b..6cb869d 100644 --- a/emufs/tipo1_test.c +++ b/emufs/tipo1_test.c @@ -2,8 +2,6 @@ int main(int argc, char* argv[]) { EMUFS* efs; - char registro1[5]; - char registro2[6]; if (argc < 2) { printf("Faltan argumentos! %s [nombre]\n", argv[0]); return 1; @@ -32,13 +30,6 @@ int main(int argc, char* argv[]) { return 1; } - if (efs->leer_registro(efs, 0, registro1) == -1) { - printf("No se pudo leer el registro 1.\n"); - return 1; - } - registro1[4] = '\0'; - printf("Registro 1: %s\n", registro1); - /* if (efs->leer_registro(efs, 1, registro2, 5) == -1) { printf("No se pudo leer el registro 2.\n"); diff --git a/emufs/tipo3_main.c b/emufs/tipo3_main.c index 1ecd370..9be9a2d 100644 --- a/emufs/tipo3_main.c +++ b/emufs/tipo3_main.c @@ -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);