<html>
<body>
It looks like you have missing 'const' there. New compiler makes more
strict tests. I really encourage to use it. It will clean up your code.
We still have 2 lines in our projects that we are not able to clean
up.<br><br>
    static prog_char st_unknown_P[]
=<x-tab>   </x-tab>"UNKNOWN";<br><br>
<x-tab>        </x-tab>static
<b>const</b> prog_char *state[] = {<br>
<x-tab>        </x-tab><x-tab>        </x-tab>...,<br>
<x-tab>        </x-tab><x-tab>        </x-tab>st_unknown_P<br>
<x-tab>        </x-tab>};<br><br>
<br>
<blockquote type=cite class=cite cite>i have<br>
warning: assignment discards qualifiers from pointer target type <br>
on the code i been write, <br>
i think i using 342 to write my code, after migrate to 343 i have nearly
hundred of the same warning,<br><br>
this warning is something like <br>
prog_char *st_P;<br>
static prog_char st_unknown[] = "UNKNOWN";<br>
st_P = st_unknown;    <- the warning line<br><br>
any idea how to fix this problem ?</blockquote>
<x-sigsep><p></x-sigsep>
Dusan</body>
</html>