Skip to content
This repository was archived by the owner on Nov 19, 2020. It is now read-only.

Fixes #30 #31

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libgerrit/entities.rs
Original file line number Diff line number Diff line change
Expand Up @@ -483,10 +483,10 @@ pub struct ChangeInfo {
pub mergeable: Option<bool>,
/// Number of inserted lines.
/// V02.09
pub insertions: u16,
pub insertions: u32,
/// Number of deleted lines.
/// V02.09
pub deletions: u16,
pub deletions: u32,
/// The sortkey of the change.
/// V02.09, not in V02.13
pub _sortkey: Option<String>,
Expand Down