mirror of
https://github.com/berlin-open-wireless-lab/DAWN.git
synced 2025-03-09 15:40:12 +00:00
correct remove function
This commit is contained in:
parent
b65652c92a
commit
3b380a5fd9
1 changed files with 1 additions and 1 deletions
|
@ -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];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue