From: Jouko P. <py...@jy...> - 2000-06-16 11:51:35
|
On Fri, 16 Jun 2000, Roman Zippel wrote: > The amiints.c changes look fine, can you commit them? For amifb.c I want > to commit something else (I didn't test it yet, as much as I wanted, but I > don't expect bigger problems.) Sorry, I already committed both. > > - if (--ami_ablecount[irq]) > > - return; > > + ami_ablecount[irq]--; > > + if (ami_ablecount[irq]<0) ami_ablecount[irq]=0; > > + else if (ami_ablecount[irq]) return; > > Could you indent that a bit? :) Is there any doc or guideline about indenting/coding style we should follow? Jouko |