Skip to content

Commit

Permalink
Fix VS 2017 build
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklauslittle authored and edenhill committed Sep 6, 2019
1 parent 577e919 commit a12b909
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rdkafka_msgset_reader.c
Original file line number Diff line number Diff line change
Expand Up @@ -1540,7 +1540,7 @@ rd_kafka_aborted_txns_next_offset (rd_kafka_aborted_txns_t *aborted_txns,
static RD_INLINE int64_t
rd_kafka_aborted_txns_pop_offset (rd_kafka_aborted_txns_t *aborted_txns,
int64_t pid) {
return rd_kafka_aborted_txns_next_offset(aborted_txns, pid, true);
return rd_kafka_aborted_txns_next_offset(aborted_txns, pid, rd_true);
}


Expand All @@ -1554,7 +1554,7 @@ static RD_INLINE int64_t
rd_kafka_aborted_txns_get_offset (const rd_kafka_aborted_txns_t *aborted_txns,
int64_t pid) {
return rd_kafka_aborted_txns_next_offset(
(rd_kafka_aborted_txns_t *)aborted_txns, pid, false);
(rd_kafka_aborted_txns_t *)aborted_txns, pid, rd_false);
}


Expand Down

0 comments on commit a12b909

Please sign in to comment.