Skip to content

Commit

Permalink
Use size_t printf format for size_t variable (#453)
Browse files Browse the repository at this point in the history
Signed-off-by: Emerson Knapp <eknapp@amazon.com>
  • Loading branch information
emersonknapp authored and dirk-thomas committed Jun 4, 2019
1 parent 4f68bbf commit 8085c6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rcl/src/rcl/lexer_lookahead.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,12 @@ rcl_lexer_lookahead2_expect(
if (type != lexeme) {
if (RCL_LEXEME_NONE == lexeme || RCL_LEXEME_EOF == lexeme) {
RCL_SET_ERROR_MSG_WITH_FORMAT_STRING(
"Expected lexeme type (%d) not found, search ended at index %lu",
"Expected lexeme type (%d) not found, search ended at index %zu",
type, buffer->impl->text_idx);
return RCL_RET_WRONG_LEXEME;
}
RCL_SET_ERROR_MSG_WITH_FORMAT_STRING(
"Expected lexeme type %d, got %d at index %lu", type, lexeme,
"Expected lexeme type %d, got %d at index %zu", type, lexeme,
buffer->impl->text_idx);
return RCL_RET_WRONG_LEXEME;
}
Expand Down

0 comments on commit 8085c6a

Please sign in to comment.