encoderd: fix indentation (#29356)

fix indentation
This commit is contained in:
Dean Lee 2023-08-13 04:30:54 +08:00 committed by GitHub
parent c76d24cec9
commit 51cdf155d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ void encoder_thread(EncoderdState *s, const LogCameraInfo &cam_info) {
}
LOG("encoder destroy");
for(auto &e : encoders) {
for (auto &e : encoders) {
e->encoder_close();
delete e;
}
@ -166,5 +166,5 @@ int main(int argc, char* argv[]) {
} else {
encoderd_thread(cameras_logged);
}
return 0;
return 0;
}