Skip to content

plougher/squashfs-tools

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

Traditionally time_t is a "long int" which matches "%ld". On 32-bit
systems both are 32-bit, and on 64-bit systems both are 64-bit.

However there are recent efforts to make time_t 64-bit on 32-bit systems.
For example recent versions of glibc support 64-bit time_t on 32-bit systems
if _TIME_BITS=64.

This breaks the previous fact that time_t always matches "%ld".

Fix this by moving to "%lld" and casting inode->time to (long long int)
to ensure it matches.

Fixes issue #260

Signed-off-by: Phillip Lougher <phillip@squashfs.org.uk>
a00a55a

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
March 10, 2022 00:13
March 17, 2023 17:43
March 9, 2022 21:02
March 17, 2023 07:29
NEWS
----

Squashfs-tools 4.6.1 released (25th March 2023)

If you like the recent releases please "star" the
project.

Thanks