Fix build of example/memfs_ll.cc on 32 bit architectures
authorLaszlo Boszormenyi (GCS) <gcs@debian.org>
Sun, 16 Feb 2025 08:07:36 +0000 (09:07 +0100)
committerBernd Schubert <bernd@bsbernd.com>
Tue, 18 Feb 2025 21:32:49 +0000 (22:32 +0100)
commit6adee44e78b70f1708b5d129281e958a2dfca33a
tree08abc00e52fd8af3ba67bf849c572ed8e66212c3
parenta5aa028097fb557231665292276813b85c849e86
Fix build of example/memfs_ll.cc on 32 bit architectures

The code uses std::min() which expects its arguments to be size_t. Two
times it uses an offset declared as off_t. While both size_t and off_t
are 32-bit integers, the latter is signed. On 64 bit architectures
the conversation of off_t -> size_t performed automatically. On 32 bit
architectures it needs a type cast.

Signed-off-by: Laszlo Boszormenyi (GCS) <gcs@debian.org>
example/memfs_ll.cc