This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: -Wconversion
- From: Steven J Abner <tauvan at starpower dot net>
- To: Ian Lance Taylor <ian at wasabisystems dot com>
- Cc: gcc-help at gcc dot gnu dot org
- Date: Sat, 17 Apr 2004 15:11:02 -0400
- Subject: Re: -Wconversion
On Saturday, April 17, 2004, at 02:36 PM, Ian Lance Taylor wrote:
Use typecasts: chmod ("foo", (mode_t) x);
Thanks.
My variable x is mode_t and casting it a second time as mode_t does stop
my warning.
Steven