[iccpd] Fix missing semicolon. (#11197)

The return statement does not end with a semicolon in function scheduler_csm_socket_cleanup, which generates a compilation warning and may cause unexpected problems.

Signed-off-by: ouxiaolong <ouxiaolong@asterfusion.com>
This commit is contained in:
Long Ou 2022-06-22 23:57:17 +08:00 committed by GitHub
parent c1d0d2e023
commit 31dd0b3bf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -871,7 +871,7 @@ void scheduler_csm_socket_cleanup(struct CSM* csm, int location)
return;
if (csm->sock_fd <= 0)
return
return;
event.data.fd = csm->sock_fd;
event.events = EPOLLIN;