1
0
Fork 0

Adding upstream version 0.10a.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-17 21:11:21 +01:00
parent ac3fd59d55
commit 7a2248990c
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
3 changed files with 3 additions and 3 deletions

View file

@ -106,7 +106,7 @@ int Extended::recsize_path() const
int Extended::recsize_file_size() const
{
if( recsize_file_size_ < 0 ) recsize_file_size_ =
( file_size_ > 0 ) ? record_size( 4, file_size_ ) : 0;
( file_size_ > 0 ) ? record_size( 4, decimal_digits( file_size_ ) ) : 0;
return recsize_file_size_;
}