Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dragon-dreamer committed Dec 11, 2024
1 parent 1aebc0b commit 7f5b8f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pe_bliss2/src/resources/version_info_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ bool version_info_from_resource_impl(
{
// Extra nullbytes at the end of the string - omit them and
// advance the buffer to the end of the value
buf.advance_rpos(value_length - value.data_size());
buf.advance_rpos(static_cast<std::int32_t>(
value_length - value.data_size()));
}
}
break;
Expand Down

0 comments on commit 7f5b8f9

Please sign in to comment.