Skip to content

Commit

Permalink
osd: fix pg_stat_t int -> int32_t
Browse files Browse the repository at this point in the history
Still 4 bytes on i386 and x86_64.

Signed-off-by: Sage Weil <[email protected]>
  • Loading branch information
Sage Weil committed Jun 26, 2014
1 parent 238b1a3 commit 4e9c2c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/osd/osd_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -1340,8 +1340,8 @@ struct pg_stat_t {
bool hitset_stats_invalid;

/// up, acting primaries
int up_primary;
int acting_primary;
int32_t up_primary;
int32_t acting_primary;

pg_stat_t()
: reported_seq(0),
Expand Down

0 comments on commit 4e9c2c1

Please sign in to comment.