[Bug 231194] New: gambas2-1.9.34-4: left shift count >= width of type
https://bugzilla.novell.com/show_bug.cgi?id=231194 Summary: gambas2-1.9.34-4: left shift count >= width of type Product: openSUSE 10.3 Version: unspecified Platform: All OS/Version: SuSE Other Status: NEW Severity: Normal Priority: P5 - None Component: Basesystem AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: dcb314@hotmail.com QAContact: qa@suse.de I just tried to compile package gambas2-1.9.34-4 The compiler said gpicture.cpp:654: warning: left shift count >= width of type The source code is gdk_pixbuf_fill(image,(guint32)col<<8 + 0xFF); I agree with the compiler. The left shift is for about 263. Suggest new code gdk_pixbuf_fill(image,(guint32) (col << 8) + 0xFF); -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=231194 chrubis@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|bnc-team- |kde-maintainers@suse.de |screening@forge.provo.novell| |.com | -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=231194 llunak@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX ------- Comment #1 from llunak@novell.com 2007-01-02 10:35 MST ------- Please report the problem upstream to Gambas developers (http://gambas.sourceforge.net/ -> Troubleshooting). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
participants (1)
-
bugzilla_noreply@novell.com