[Bug 498435] New: sane-backends: 4 * undefined code
http://bugzilla.novell.com/show_bug.cgi?id=498435 Summary: sane-backends: 4 * undefined code Classification: openSUSE Product: openSUSE 11.2 Version: Factory Platform: All OS/Version: openSUSE 11.1 Status: NEW Severity: Normal Priority: P5 - None Component: Other AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: dcb314@hotmail.com QAContact: qa@suse.de Found By: --- I just tried to build Factory package sane-backends-1.0.19-102.32 and the build said 1. mustek_pp_ccd300.c:1016: warning: operation on 'priv->blueline' may be undefined The source code is priv->blueline = ++priv->blueline % priv->blue_offs; I agree with the compiler. Better code would be priv->blueline = (priv->blueline + 1) % priv->blue_offs; 2. mustek_pp_ccd300.c:946: warning: operation on 'priv->blueline' may be undefined mustek_pp_ccd300.c:943: warning: operation on 'priv->blueline' may be undefined mustek_pp_ccd300.c:982: warning: operation on 'priv->blueline' may be undefined Duplicates. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=498435 Johannes Meixner <jsmeix@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P5 - None |P4 - Low Status|NEW |ASSIGNED CC| |jsmeix@novell.com AssignedTo|bnc-team-screening@forge.pr |jsmeix@novell.com |ovo.novell.com | -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=498435 User jsmeix@novell.com added comment http://bugzilla.novell.com/show_bug.cgi?id=498435#c1 --- Comment #1 from Johannes Meixner <jsmeix@novell.com> 2009-04-28 09:10:04 MDT --- FYI: sane-backends version 1.0.20 will be released soon at http://www.sane-project.org/ -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=498435 User jsmeix@novell.com added comment http://bugzilla.novell.com/show_bug.cgi?id=498435#c2 Johannes Meixner <jsmeix@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED Target Milestone|--- |Milestone 5 --- Comment #2 from Johannes Meixner <jsmeix@novell.com> 2009-07-29 08:40:30 MDT --- Fixed as suggested in sane-backends 1.0.20 - priv->redline = ++priv->redline % priv->green_offs; + priv->redline = (priv->redline + 1) % priv->green_offs; - priv->blueline = ++priv->blueline % priv->blue_offs; + priv->blueline = (priv->blueline + 1) % priv->blue_offs; - priv->redline = ++priv->redline % priv->green_offs; + priv->redline = (priv->redline + 1) % priv->green_offs; - priv->blueline = ++priv->blueline % priv->blue_offs; + priv->blueline = (priv->blueline + 1) % priv->blue_offs; but not yet submitted to openSUSE:Factory. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=498435 User jsmeix@novell.com added comment http://bugzilla.novell.com/show_bug.cgi?id=498435#c3 --- Comment #3 from Johannes Meixner <jsmeix@novell.com> 2009-07-30 05:31:18 MDT --- The upstream bug report is https://alioth.debian.org/tracker/index.php?func=detail&aid=311857&group_id=30186&atid=410366 -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=498435 User jsmeix@novell.com added comment http://bugzilla.novell.com/show_bug.cgi?id=498435#c4 --- Comment #4 from Johannes Meixner <jsmeix@novell.com> 2009-07-30 05:48:54 MDT --- Submitted to openSUSE:Factory: 15915 State:new Creator:jsmeix When:2009-07-30T13:47:44 submit: graphics/sane-backends -> openSUSE:Factory Comment: 'Fixed bnc#517281 and bnc#498435' -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=498435 http://bugzilla.novell.com/show_bug.cgi?id=498435#c5 --- Comment #5 from Bernhard Wiedemann <bwiedemann@suse.com> --- This is an autogenerated message for OBS integration: This bug (498435) was mentioned in https://build.opensuse.org/request/show/15915 Factory / sane-backends -- You are receiving this mail because: You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com