encoderd: fix indentation (#29356)

fix indentation
old-commit-hash: 51cdf155d9
This commit is contained in:
Dean Lee
2023-08-13 04:30:54 +08:00
committed by GitHub
parent a38f32ae48
commit cfef62bbd6

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;
}