diff options
author | Przemyslaw Pawelczyk <przemoc@gmail.com> | 2018-01-23 15:36:20 +0100 |
---|---|---|
committer | Przemyslaw Pawelczyk <przemoc@gmail.com> | 2018-01-23 15:36:20 +0100 |
commit | 076fc6198041d58705c2decc3596d12910284bc4 (patch) | |
tree | f438907b9eb8d5bcbdd66dc79ee160ef7488577e /FILEFORMAT | |
parent | 75c68929c302b7d3cca77c3cf542dd299d18394a (diff) |
Fix documentation: integers are stored in little-endian byte order.
David misdocumented read/write int functions back in commit
5fed2f9169fdd0585cc83ff0fa8210d97da77cb2 (2007-05-19) and later it
probably got copy-pasted to the documentation of file format.
Diffstat (limited to 'FILEFORMAT')
-rw-r--r-- | FILEFORMAT | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ Following sections explain internals of metastore file (.metadata). CSTRING = NUL-terminated binary string BSTRING(N) = binary string of length N - INT(N) = N byte integer in big endian byte order + INT(N) = N byte integer in little-endian byte order ### File layout |