From 3b454f509a2e2c28f41248d759295faf5fe46626 Mon Sep 17 00:00:00 2001 From: Weber Date: Thu, 21 Mar 2024 21:06:57 +0000 Subject: [PATCH] skuska --- cv5/program.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cv5/program.c b/cv5/program.c index 4fa2b9a..00a967e 100644 --- a/cv5/program.c +++ b/cv5/program.c @@ -35,7 +35,7 @@ int main() { students_capacity = (students_capacity + 1) * 2; student_t *new_students = realloc(students, students_capacity * sizeof(student_t)); if (new_students == NULL) { - fprintf(stderr, "Error: Memory reallocation failed\n"); + fprintf(stderr, "Error"); return 1; } students = new_students;