Skip to content

Commit

Permalink
Fix windows compilation (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodjjo authored Aug 22, 2018
1 parent b9c7261 commit 017e144
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/clippings/clipping_conversion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ void ClippingConversion::allocate_buffers(bool from_start, bool append_reverse,
}
}

void ClippingConversion::encode_frame(vs::Encoder *encoder, u_int8_t *buffer) {
void ClippingConversion::encode_frame(vs::Encoder *encoder, uint8_t *buffer) {
encoder->frame(buffer);
++current_position_;
}
Expand Down
2 changes: 1 addition & 1 deletion src/wnd_cutter/cutter_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1221,7 +1221,7 @@ void CutterWindow::update_buffers(bool frame_changed) {
clipping_->wh(clipping_->player()->info()->w(), clipping_->player()->info()->h());
}

if (clipping_->keys().size() != static_cast<u_int32_t>(key_list_->size())) {
if (clipping_->keys().size() != static_cast<uint32_t>(key_list_->size())) {
update_clipping_list();
}
}
Expand Down

0 comments on commit 017e144

Please sign in to comment.