unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* warnings on amd64
@ 2005-01-05 15:10 Karol Szkudlarek
  2005-01-07 17:01 ` Jan D.
  0 siblings, 1 reply; 4+ messages in thread
From: Karol Szkudlarek @ 2005-01-05 15:10 UTC (permalink / raw)


Hello!

During emacs compilation on my 64-bit box from the latest trunk I got:

(I did ./configure --prefix=$HOME/usr/emacs --with-gtk; make bootstrap)

gtkutil.c: In function `xg_gtk_scroll_destroy':
gtkutil.c:2853: warning: cast from pointer to integer of different size
gtkutil.c: In function `xg_create_scroll_bar':
gtkutil.c:2923: warning: cast to pointer from integer of different size
gtkutil.c: In function `xg_tool_bar_callback':
gtkutil.c:3115: warning: cast from pointer to integer of different size
gtkutil.c: In function `xg_tool_bar_help_callback':
gtkutil.c:3212: warning: cast from pointer to integer of different size
gtkutil.c: In function `update_frame_tool_bar':
gtkutil.c:3459: warning: cast to pointer from integer of different size
gtkutil.c:3489: warning: cast to pointer from integer of different size
gtkutil.c:3493: warning: cast to pointer from integer of different size

xselect.c: In function `x_fill_property_data':
xselect.c:2495: warning: cast from pointer to integer of different size

Those warnings are potential errors.

Regards,
Karol

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: warnings on amd64
  2005-01-05 15:10 warnings on amd64 Karol Szkudlarek
@ 2005-01-07 17:01 ` Jan D.
  2005-01-10 14:26   ` Karol Szkudlarek
  0 siblings, 1 reply; 4+ messages in thread
From: Jan D. @ 2005-01-07 17:01 UTC (permalink / raw)
  Cc: emacs-devel

Karol Szkudlarek wrote:

> Hello!
>
> During emacs compilation on my 64-bit box from the latest trunk I got:
>
> (I did ./configure --prefix=$HOME/usr/emacs --with-gtk; make bootstrap)
>
> gtkutil.c: In function `xg_gtk_scroll_destroy':
> gtkutil.c:2853: warning: cast from pointer to integer of different size
> gtkutil.c: In function `xg_create_scroll_bar':
> gtkutil.c:2923: warning: cast to pointer from integer of different size
> gtkutil.c: In function `xg_tool_bar_callback':
> gtkutil.c:3115: warning: cast from pointer to integer of different size
> gtkutil.c: In function `xg_tool_bar_help_callback':
> gtkutil.c:3212: warning: cast from pointer to integer of different size
> gtkutil.c: In function `update_frame_tool_bar':
> gtkutil.c:3459: warning: cast to pointer from integer of different size
> gtkutil.c:3489: warning: cast to pointer from integer of different size
> gtkutil.c:3493: warning: cast to pointer from integer of different size
>
> xselect.c: In function `x_fill_property_data':
> xselect.c:2495: warning: cast from pointer to integer of different size
>
> Those warnings are potential errors. 


I think I fixed these now, but I don't have any amd64, so I can't be sure.

Thanks,

    Jan D.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: warnings on amd64
  2005-01-07 17:01 ` Jan D.
@ 2005-01-10 14:26   ` Karol Szkudlarek
  2005-01-16 10:00     ` Jan D.
  0 siblings, 1 reply; 4+ messages in thread
From: Karol Szkudlarek @ 2005-01-10 14:26 UTC (permalink / raw)
  Cc: emacs-devel

Jan D. wrote:
> Karol Szkudlarek wrote:
> 
>> Hello!
>>
>> During emacs compilation on my 64-bit box from the latest trunk I got:
>>
>> (I did ./configure --prefix=$HOME/usr/emacs --with-gtk; make bootstrap)
>>
>> gtkutil.c: In function `xg_gtk_scroll_destroy':
>> gtkutil.c:2853: warning: cast from pointer to integer of different size
>> gtkutil.c: In function `xg_create_scroll_bar':
>> gtkutil.c:2923: warning: cast to pointer from integer of different size
>> gtkutil.c: In function `xg_tool_bar_callback':
>> gtkutil.c:3115: warning: cast from pointer to integer of different size
>> gtkutil.c: In function `xg_tool_bar_help_callback':
>> gtkutil.c:3212: warning: cast from pointer to integer of different size
>> gtkutil.c: In function `update_frame_tool_bar':
>> gtkutil.c:3459: warning: cast to pointer from integer of different size
>> gtkutil.c:3489: warning: cast to pointer from integer of different size
>> gtkutil.c:3493: warning: cast to pointer from integer of different size
>>
>> xselect.c: In function `x_fill_property_data':
>> xselect.c:2495: warning: cast from pointer to integer of different size
>>
>> Those warnings are potential errors. 
> 
> 
> 
> I think I fixed these now, but I don't have any amd64, so I can't be sure.
> 
> Thanks,
> 
>    Jan D.
> 
> 
> 
> _______________________________________________
> Emacs-devel mailing list
> Emacs-devel@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-devel

Hi!

Mentioned warnings don't appear on amd64 now.
But I have another ones:

fringe.c: In function `Fdefine_fringe_bitmap':
fringe.c:1304: warning: assignment from incompatible pointer type
fringe.c: In function `init_fringe':
fringe.c:1475: warning: assignment from incompatible pointer type

Karol

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: warnings on amd64
  2005-01-10 14:26   ` Karol Szkudlarek
@ 2005-01-16 10:00     ` Jan D.
  0 siblings, 0 replies; 4+ messages in thread
From: Jan D. @ 2005-01-16 10:00 UTC (permalink / raw)
  Cc: emacs-devel

Karol Szkudlarek wrote:

> fringe.c: In function `Fdefine_fringe_bitmap':
> fringe.c:1304: warning: assignment from incompatible pointer type
> fringe.c: In function `init_fringe':
> fringe.c:1475: warning: assignment from incompatible pointer type 


These have been fixed, thanks.

    Jan D.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-01-16 10:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-05 15:10 warnings on amd64 Karol Szkudlarek
2005-01-07 17:01 ` Jan D.
2005-01-10 14:26   ` Karol Szkudlarek
2005-01-16 10:00     ` Jan D.

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).