|
Description
|
mpxu's tsalarm getinfo() casts between a pointer and integer of
different size, triggering a warning when built with gcc. The standards
do not specify whether such casts cause sign extension; gcc sign-extends
and warns while Studio does neither. The safe way to keep the current
behaviour is to cast to uintptr_t first.
See suggested fix for more detail.
|