X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/696ff22c96589e7f22479cd5d202d1050241322f..abee4a82225665f66e60a61a27bb924c698e101c:/emufs/tipo1_main.c diff --git a/emufs/tipo1_main.c b/emufs/tipo1_main.c index cc268ab..9c45fc3 100644 --- a/emufs/tipo1_main.c +++ b/emufs/tipo1_main.c @@ -59,21 +59,21 @@ int main(int argc, char* argv[]) { } /* Graba registros */ - id1 = efs->grabar_registro(efs, reg1, sizeof(reg1)+1, &err); + id1 = efs->grabar_registro(efs, reg1, sizeof(reg1), &err); if (err) { printf("No se pudo grabar el registro 1 (%d).\n", err); goto error; } printf("Se grabó el registro 1 (size: %u) con el id %lu.\n", sizeof(reg1), id1); - id2 = efs->grabar_registro(efs, reg2, sizeof(reg2)+1, &err); + id2 = efs->grabar_registro(efs, reg2, sizeof(reg2), &err); if (err) { printf("No se pudo grabar el registro 2 (%d).\n", err); goto error; } printf("Se grabó el registro 2 (size: %u) con el id %lu.\n", sizeof(reg2), id2); - id3 = efs->grabar_registro(efs, reg3, sizeof(reg3)+1, &err); + id3 = efs->grabar_registro(efs, reg3, sizeof(reg3), &err); if (err) { printf("No se pudo grabar el registro 3 (%d).\n", err); goto error;