This commit is contained in:
Tančáková 2024-03-20 16:08:36 +01:00
parent 44e096d9bf
commit e5a26ba134

View File

@ -42,7 +42,7 @@ int find_student(struct student *students, int size, const char *name) {
return i; // Nájdený študent return i; // Nájdený študent
} }
} }
return 1; // Študent nenájdený return 0; // Študent nenájdený
} }
int id = find_student(database, size, name); int id = find_student(database, size, name);
if (id < 0) { if (id < 0) {