Skip to content

Commit

Permalink
Clang
Browse files Browse the repository at this point in the history
  • Loading branch information
NotherNgineer authored Jul 20, 2023
1 parent 58f0ce1 commit fb27e86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/application/ui_record_view.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ void RecordView::start() {
}

auto p = std::make_unique<RawFileWriter>();
auto create_error = p->create(base_path.replace_extension((file_type == FileType::RawS8)? u".C8" : u".C16"));
auto create_error = p->create(base_path.replace_extension((file_type == FileType::RawS8) ? u".C8" : u".C16"));
if (create_error.is_valid()) {
handle_error(create_error.value());
} else {
Expand Down

0 comments on commit fb27e86

Please sign in to comment.