This commit is contained in:
Tančáková 2024-03-20 16:04:29 +01:00
parent 587d2f4e11
commit 44e096d9bf

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 1; // Študent nenájdený
} }
int id = find_student(database, size, name); int id = find_student(database, size, name);
if (id < 0) { if (id < 0) {