Skip to content

Commit

Permalink
fixed syntax error: identifier 'uint'
Browse files Browse the repository at this point in the history
  • Loading branch information
Fixstars-momoko committed Aug 24, 2023
1 parent 52a753b commit d62b437
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/ion-bb-image-io/rt_file.h
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ namespace {
return finished_;
}

uint get_index() {
uint32_t get_index() {
return current_idx_;
}

Expand Down Expand Up @@ -623,7 +623,7 @@ int binaryloader_finished(halide_buffer_t* in0, halide_buffer_t* in1, halide_buf
auto& r(Reader::get_instance(session_id, width, height, output_directory));
auto finished_flag = r.get_finished();
*reinterpret_cast<bool*>(finished->host) = finished_flag;
*reinterpret_cast<uint*>(bin_idx->host) = r.get_index();
*reinterpret_cast<uint_32*>(bin_idx->host) = r.get_index();
if (finished_flag) {
r.close();
r.release_instance(session_id);
Expand Down

0 comments on commit d62b437

Please sign in to comment.