1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-25 18:50:18 +03:00

journal: use le64_t instead of uint64_t where this is appropriate

This commit is contained in:
Lennart Poettering 2012-10-20 17:10:32 +02:00
parent 0dd1795907
commit e8c61d7b74

View File

@ -131,8 +131,8 @@ _packed_ struct EntryArrayObject {
_packed_ struct TagObject {
ObjectHeader object;
uint64_t seqnum;
uint64_t epoch;
le64_t seqnum;
le64_t epoch;
uint8_t tag[TAG_LENGTH]; /* SHA-256 HMAC */
};