X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/9e9b90c186ca2d7c0cb5fd777beba28714fbaeff..8665a7da4441e79f72cb35246be42f094c54bdc6:/emufs/tipo1_test.c diff --git a/emufs/tipo1_test.c b/emufs/tipo1_test.c index bb18c19..188ef8b 100644 --- a/emufs/tipo1_test.c +++ b/emufs/tipo1_test.c @@ -32,9 +32,9 @@ int main(int argc, char* argv[]) { return 1; } - if (efs->leer_registro(efs, 0, registro1, 4) == -1) { + if (efs->leer_registro(efs, 0, registro1) == -1) { printf("No se pudo leer el registro 1.\n"); - return ; + return 1; } registro1[4] = '\0'; printf("Registro 1: %s\n", registro1); @@ -51,4 +51,3 @@ int main(int argc, char* argv[]) { emufs_destruir(efs); return 0; } -