<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
<title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Andreas Tscharner wrote:
<blockquote cite="mid:fcmsmp$aq8$1@paris.nodomain.org" type="cite">
<blockquote type="cite">
<blockquote type="cite">
<pre wrap="">P.S. A get a lot of the following warnings while compiling:
warning: deprecated conversion from string constant to 'char*'
</pre>
</blockquote>
<pre wrap="">gcc issue I expect - just disable the warning, or use a version of
gcc that doesn't produce it.
</pre>
</blockquote>
<pre wrap=""><!---->
I knew that :-)
andy@shannara:~$ gcc --version
gcc (GCC) 4.2.1 (Debian 4.2.1-5)
What I meant: Is there another way to remove these warnings by fixing
the code; I had a look at one such warning; it didn't like this for example:
options = "";</pre>
</blockquote>
I haven't looked at the code in question, but my guess is that it's
complaining because 'options' is 'char*' and not 'const char*' or
'const char const*'.<br>
<br>
-Torsten<br>
</body>
</html>