[PATCH]: Fix comparison between signed and unsigned warning in ld

Thiemo Seufer ths@networkno.de
Fri Dec 9 00:54:00 GMT 2005


Khem Raj wrote:
[snip]
> --- emultempl/elf32.em	7 Dec 2005 14:43:54 -0000	1.161
> +++ emultempl/elf32.em	9 Dec 2005 00:48:28 -0000
> @@ -569,7 +569,7 @@ gld${EMULATION_NAME}_parse_ld_so_conf_in
>  #ifdef HAVE_GLOB
>    if (glob (pattern, 0, NULL, &gl) == 0)
>      {
> -      size_t i;
> +      int i;
>  
>        for (i = 0; i < gl.gl_pathc; ++i)
>  	gld${EMULATION_NAME}_parse_ld_so_conf (info, gl.gl_pathv[i]);

gl.gl_pathc should probably be a size_t instead.


Thiemo



More information about the Binutils mailing list