corrected: a shift of 32 is not portable!
This commit is contained in:
parent
de31b2f2af
commit
efd43bc6f5
@ -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…
x
Reference in New Issue
Block a user