Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
auxten committed Dec 22, 2023
1 parent 46436c4 commit acd1c3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/chdbStub.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ int main()
{
printf("Query Result: %s\n", result->buf);
printf("Elapsed Time: %fs\n", result->elapsed);
printf("Rows Read: %lu\n", result->rows_read);
printf("Bytes Read: %lu\n", result->bytes_read);
printf("Rows Read: %llu\n", result->rows_read);
printf("Bytes Read: %llu\n", result->bytes_read);

// Free the result
free_result(result);
Expand Down

0 comments on commit acd1c3d

Please sign in to comment.