Hi,<br><br>I&#39;am newbie with splint... and i like use the splint to give me warnings when i porting the 32 to 64 bits.<br>The lint tool has a flag -errchk=longptr64 to do that, where warning when<br>int = long<br>int = (cast) ptr
<br><br>With splint, how i do that??<br>I know that -ignorequals flag in splint, catch the first case (int = long)<br>and what a flag to second case??<br><br>Example:<br><br>int a, c;<br>long b;<br><br>a = b; // -ignorequals warning here (int = long)
<br>c = 10;<br>a = (int) &amp;c; // what is the flag? (int = ptr)<br clear="all"><br><br>any help<br>thanks,<br>-- <br>Ibéria Medeiros