bug-guile
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: MinGW port


From: Neil Jerram
Subject: Re: MinGW port
Date: Mon, 04 Sep 2006 23:20:34 +0100
User-agent: Gnus/5.1007 (Gnus v5.10.7) Emacs/21.4 (gnu/linux)

Nils Durner <address@hidden> writes:

> Hi,
>
> the attached patch fixes compiler errors on Win32/MinGW.

> -  execv (exec_file, exec_argv);
> +  execv (exec_file,
> +#ifdef __MINGW32__
> +     (const char * const *)
> +#endif
> +     exec_argv);

Thanks for the patch, but do you understand exactly what the
Win32/MinGW compiler is complaining about?  I thought it was generally
OK to pass a non-const value to a function whose corresponding
parameter is declared as const.

Regards,
     Neil





reply via email to

[Prev in Thread] Current Thread [Next in Thread]