mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 03:59:58 +00:00
libarchive: Use ARCHIVE_LITERAL_ULL to add ULL integer suffix
The macro maps to an implementation that works on older compilers when necessary.
This commit is contained in:
parent
61b39af353
commit
0bff4df5f6
@ -2487,7 +2487,7 @@ tar_atol256(const char *_p, size_t char_cnt)
|
||||
if (c & 0x40) {
|
||||
neg = 0xff;
|
||||
c |= 0x80;
|
||||
l = ~0ULL;
|
||||
l = ~ARCHIVE_LITERAL_ULL(0);
|
||||
} else {
|
||||
neg = 0;
|
||||
c &= 0x7f;
|
||||
|
Loading…
Reference in New Issue
Block a user