diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-08-03 22:50:00 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-08-03 23:53:49 -0400 |
commit | fa1c4b518ec7d8ec2d647213ee651cde4d6c9d7e (patch) | |
tree | 6f95fd77ef7f9a6a52501fa58c288cb8026ec66e /src/journal/journal-file.h | |
parent | 1f2b7175cf84bdbef6ee6917224658ba2adf43bf (diff) |
Fix misuse of uint64_t as size_t
They have different size on 32 bit, so they are really not interchangable.
Diffstat (limited to 'src/journal/journal-file.h')
-rw-r--r-- | src/journal/journal-file.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journal-file.h b/src/journal/journal-file.h index 6703b93b89..3d416820b0 100644 --- a/src/journal/journal-file.h +++ b/src/journal/journal-file.h @@ -80,7 +80,7 @@ typedef struct JournalFile { #ifdef HAVE_XZ void *compress_buffer; - uint64_t compress_buffer_size; + size_t compress_buffer_size; #endif #ifdef HAVE_GCRYPT |