Update LXT2 and FST files to latest from GTKWave
This commit is contained in:
parent
6bc3f98e0a
commit
9c5113194d
|
|
@ -1072,9 +1072,9 @@ if(!sysctl(mib, 2, &v, &length, NULL, 0))
|
|||
{
|
||||
v /= 8;
|
||||
|
||||
if(v > FST_BREAK_SIZE)
|
||||
if(v > (int64_t)FST_BREAK_SIZE)
|
||||
{
|
||||
if(v > FST_BREAK_SIZE_MAX)
|
||||
if(v > (int64_t)FST_BREAK_SIZE_MAX)
|
||||
{
|
||||
v = FST_BREAK_SIZE_MAX;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1057,7 +1057,7 @@ if(!clone)
|
|||
for(cnt = 0; cnt < lt->break_header_size; cnt += sizeof(buf))
|
||||
{
|
||||
seg = lt->break_header_size - cnt;
|
||||
if(seg > sizeof(buf))
|
||||
if(seg > (off_t)sizeof(buf))
|
||||
{
|
||||
seg = sizeof(buf);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue