corrected: a shift of 32 is not portable!
This commit is contained in:
parent
5db0db5959
commit
0aa6d4ed5d
1 changed files with 1 additions and 1 deletions
|
@ -378,7 +378,7 @@ valu_t valu;
|
|||
outname->on_foff = 0;
|
||||
outname->on_type = type;
|
||||
outname->on_desc = desc;
|
||||
outname->on_valu = valu & ~((0xFFFFFFFF)<<(8*sizeof(valu_t)));
|
||||
outname->on_valu = valu & ~(((0xFFFFFFFF)<<(4*sizeof(valu_t)))<<(4*sizeof(valu_t)));
|
||||
}
|
||||
|
||||
oflush()
|
||||
|
|
Loading…
Reference in a new issue