correct remove function

This commit is contained in:
PolynomialDivision 2017-12-29 22:51:10 +01:00
parent b65652c92a
commit 3b380a5fd9

View file

@ -547,7 +547,7 @@ client *client_array_delete(client entry) {
}
}
for (int j = i; j <= client_entry_last; j++) {
for (int j = i; j < client_entry_last; j++) {
client_array[j] = client_array[j + 1];
}