This commit is contained in:
Weber 2024-03-21 21:26:55 +00:00
parent 80b02b2f26
commit 7881b9be2b

View File

@ -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,3 +68,4 @@ int main() {
return 0;
}