Skip to content

Commit

Permalink
Use standard integers in structs
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperisager committed Jul 15, 2024
1 parent 1fe067e commit 1b96567
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions binding.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,21 +49,21 @@ typedef struct {

void *buf;
int len;
sqlite3_int64 offset;
int64_t offset;
} sqlite3_native_read_t;

typedef struct {
sqlite3_native_file_t *file;

const void *buf;
int len;
sqlite3_int64 offset;
int64_t offset;
} sqlite3_native_write_t;

typedef struct {
sqlite3_native_file_t *file;

sqlite_int64 size;
int64_t size;
} sqlite3_native_size_t;

typedef struct {
Expand Down

0 comments on commit 1b96567

Please sign in to comment.