From f18e9b48c3257838fb7bcc4cfae40cd8f2e0b196 Mon Sep 17 00:00:00 2001 From: Weber Date: Fri, 22 Mar 2024 00:09:58 +0000 Subject: [PATCH] skuska --- cv5/program.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cv5/program.c b/cv5/program.c index b8d084b..2afe54a 100644 --- a/cv5/program.c +++ b/cv5/program.c @@ -45,7 +45,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, "Chyba"); return 1; } students = new_students; @@ -68,4 +68,3 @@ int main() { return 0; } -